Trying to enable permalinks but my server does not have .htaccess enabled.
When I try to put this into my .httpd.conf file it fails:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
Failure message:
RewriteBase: only valid in per-directory config files
What's the magic? Sorry, I don't understand apache.
Thanks for any help.