I've read the permalinks setup page, searched the forum a bunch and googled as well. This seems to be a common issue but the tips I've found so far have been unfruitful. Right now it seems like it might be the Apache version.
WP is running on:
Apache/1.3.33
PHP/4.4.0
MySQL 4.1.11
When I enable permalinks and either let it write to the .htaccess file or I copy & paste to it, I get a 403 when I try to access any pages on the site. Here's the contents of the .htacess file:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I've also tried:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
# END WordPress
But that gives me a 500.
WP is installed in the root. The structure I'm going for is:
/%category%/%postname%/
But even when I try Date and name based, I still get a 403.
Thanks.