Permalinks not working, .htaccess is writtable
-
Hi everyone,
Thanks for taking a look.
I am attempting to change from the default permalinks to “/post-name” and I receive a “404 URL Not Found”
Yes, I know, post-name is bad, etc, etc. However, regardless of which type of permalink I choose, the only one that works is default.
I manually created the .htaccess using the following:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>The .htaccess file is placed in the wordpress install directory (where the ‘wp-content’ directory lives), and the permissions are set to 666 (Read/write all the way through). As far as i can tell, WordPress IS able to write to this file since I do not get the usual “if your .htaccess file were writable…” error.
Yes, I have tried going from post-name to default, and back to post-name with no luck.
I’m stumped here. I’m guessing it is a problem with mod_rewrite on the apache server but I am willing to investigate any other solutions before I go bothering my DBA.
Thanks for your help,
C
- The topic ‘Permalinks not working, .htaccess is writtable’ is closed to new replies.