Summary
This article explains how to manually customize your html or php error pages.
Customizing your error pages
When manually editing your .htaccess file you will need to add the following entry to fit your site:
ErrorDocument error-number /Your-Error-file.html
For example if I had the file notfound.html in the root directory of my site and I wanted to use it for a 404 error I would use:
ErrorDocument 404 /notfound.html
The other way is a work-around. But works really well. It just redirects the old error page to the new error page.
Make an error page such as Errorpage1.shtml. Then fill out this .htaccess redirect entry.
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^$
RewriteCond %{HTTP_HOST} ^domain.com/400.shtml$
RewriteRule ^$ http://domain.com/errorpage1.shtml [L,R=301]
Recommended Help Content
This article explains error pages and how they can be customized.
If suddenly when you go to your page, you get nothing on the page. You can still get HTML to display, just not PHP. To serve HTML pages to browsers, we don't associate the Apache processes with your 2
This article will explain how to add a PHP handler to your .htaccess files. This is useful if you want to customize the version of PHP that runs your PHP files.
Related Help Content
How do I turn the display_errors flag on for php?
500 Internal Server Error when installing via the MOJO Marketplace installer.
The redirection of www.yourdomain.com/default.html or index.html to http://www.yourdomain.com/index.php?act=whatever redirects it to http://www.yourdomain.com/index.php%3fact=whatever In other words,
This article will show a few MySQL errors along with explanations as to why they might be occurring.
Executing php code within a HTML document
This article will explain some common causes for 500 errors on Dedicated or V.P.S servers.
How to Set different character sets with PHP and HTML to display correctly.
This article will show a way to protect specific pages of your website with SSL. This may have benefits for SEO and can be used on pages that contain forms, shopping carts or any other page where users might enter sensitive information.