Hello all -
We've installed WordPress 2.9.2 in a subdirectory named /university/.
If we change the permalink structure to anything other than 'default' and try to view a page, we get a 404. The .htaccess file permissions are currently set to 0666, and when I change the structure WordPress appears to accept it (with the message "Permalink structure updated"). With the custom permalink structure, the .htaccess file reads:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /university/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /university/index.php [L]
</IfModule>
# END WordPress
Why in the world are we still getting 404s?
- We've dropped the database, created a new one and imported the data. No change
- We've overwritten the current version of WordPress with a fresh install. No change.
- We've deactivated all the plugins. No change.
Can anyone see or think of anything we're missing?
Thanks!