Permalinks on Apache 2
-
I’m trying to move from the default permalink structure to /%category%/%postname%/ and I keep encountering a 404 error.
htaccess file is created in the root/blog/ folder and WP 2.8.4 has complete access to the file (CHMOD 777). I even deleted all the contents of the file and allowed WP to rewrite to it.
Virtual Host settings are as follows:
<Directory “/Library/WebServer/Documents/mysite.com”>
AllowOverride All
<IfModule mod_dav.c>
DAV Off
</IfModule>
Options All -Includes -ExecCGI +MultiViews -Indexes
</Directory>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_METHOD} ^TRACE
RewriteRule .* – [F]
</IfModule>Can anyone help me out, I’m going crazy here. . . thanks so much!
- The topic ‘Permalinks on Apache 2’ is closed to new replies.