404 not working after upgrade to 2.0.1
-
After I upgraded from 1.5.2 to 2.0.1 my 404-page stopped working. Instead I get the following error:
“The requested URL /php-bin/index.php was not found on this server.”
So far I have tried:
1) to update the permalink structure to both “/%year%/%monthnum%/%day%/%postname%/” and “/archives/%year%/%monthnum%/%day%/%postname%/”. That didn’t help2) to let WP create the .httacces file from scratch to make sure other rules weren’t causing the error.
3) I also tried to specify the path to the 404 document in the .htaccess-file (ErrorDocument 404 /index.php?error=404)
The .htaccess-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
Any ideas?
- The topic ‘404 not working after upgrade to 2.0.1’ is closed to new replies.