Customize
Error Pages
You
can customize your own Error Pages easily from within your Hosting
Control Manager. To do this, log onto the Control Manager ->
choose Domain Manager -> Customize Error
Pages.
You
can create your own 400, 401, 403, 404 and 500 pages.
All
you need to do is type or copy/paste your html code in the appropriate
box.
Here
is an example of a customized 404 Error page:-
<html>
<body>
<font size="2" face="Verdana, Arial, Helvetica,
sans-serif">You have accessed
an invalid page. You will be redirected back to <a href="http://www.YourDomainName.com">http://www.YourDomainName.com</a></font>
<script language="JavaScript">
KW_mac=(navigator.userAgent.indexOf("Mac")>-1)?1:0;
window.location=(KW_mac)?'http://www.YourDomainName.com':'http://www.YourDomainName.com';
</script>
</body>
</html>
Here is an example of a customized
401 Authorization Required page:-
<html>
<body>
<p><font size="2" face="Verdana, Arial,
Helvetica, sans-serif">If you reside at
the GeorgeTowns, then you must <a href="http://georgetowns.com/join.html">register</a>
to have access to these protected areas. </font></p>
<p><font size="2" face="Verdana, Arial,
Helvetica, sans-serif">If you are already
registered, ensure that you have entered the correct username and
password.
Only authorized members are allowed access. All usernames and passwords
are
CaSe SeNsItIvE.</font></p>
<p> </p>
</body>
</html>
|