PDA

View Full Version : html error redirect



morse
June 20th, 2003, 02:33 AM
How do I make it so that when you try to view a page on my website that doesnt exist, it goes to a different page that I specify?

Example: http://www.kirupa.com/morserules <--CLICK

Voetsjoeba
June 20th, 2003, 06:04 AM
That's a changeable 404 page, you should contact your hosting company to see if it's possible to change it.

mlk
June 20th, 2003, 10:44 AM
file called .htaccess:

ErrorDocument 404 /404.html
or ErrorDocument 404 /http://mypage.com
ErrorDocument 403 /forbiddenaccess.html

(changeable for any directory - root one otherswise)

morse
June 20th, 2003, 03:59 PM
thanks