problems getting 404 error page working
-
I can’t seem to get my 404 error page working. I’ve followed the instructions and have a 404.php file in my current theme folder.
WordPress 2.0 is installed in the following folder:
My .htaccess file looks like this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php
</IfModule># END WordPress
ErrorDocument 404 /wp/index.php?error=404
When I type in an incorrect URI I just see a blank page, the source of which looks like this:
<html><head></head><body></body></html>
Any ideas on where I’m going wrong?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘problems getting 404 error page working’ is closed to new replies.