.htaccess - Why does my wordpress 404 page appear blank? -
I have created some topics and have seen a 404 page uploaded once on my server. Never appear, they always do their local host setup, and themes work for others too.
I do not see any reason for not doing this, I have mod_rewrite enabled for beautiful permalinks, but 404 does not want to redirection work.
Is this a known issue?
Is this my shy server with Streamline.net?
Can anyone help?
You can try to install your own error documents in .htaccess, You can override the settings and that point is "Error" or your 404.php in your theme
error document 401 http://mydomain.com/error/ ErrorDocument 403 http: // Mydomain.com/error/ ErrorDocument 404 http: // Mydomain.com/error/ ErrorDocument 500 http://mydomain.com/error/
Edit: You have 404 of your subject. You can also make a redirect in the php file (yes, this ugly Need is ..) on your static error page: & lt ;? Php header ("Location: http://mydomain.com/error/"); ? & Gt;
If that does not work, I do not know.
Comments
Post a Comment