How do I customize error messages for my site?

Within control panel select Custom Error Pages. Select the error code link and place whatever code you like. Maintain the default file name it gives you or it will not work without additional changes to the .htaccess files.

If that does not work edit your htaccess file and add the following line:

ErrorDocument 404 /404.html

404.html would be the filename and path to your custom error page for a 404. You may do the same for other common errors.


  • 342 Users Found This Useful

Was this answer helpful?

Related Articles

Do you have a firewall?

Yes, our servers have firewalls. For security we close off unused ports and update the server...

Creating a Form Button

Sometimes all you need is a simple button. The following pages are pretty useful tools for...

How to create a temporary 302 redirect via htaccess

An easy way to create a temporary redirect from one page to another web page is to use the 302...

Set CORS header to Allow Access for any Incoming Domain

The following may be used to set to always set the CORS header for any incoming domains without...

How do I parse html files as shtml?

Create an .htaccess file in the directory needed and add the following: AddHandler...