PDA

View Full Version : Error Page


xero-infinity
11-26-01, 07:21 AM
Can anyone tell me how to make an error page? I would be very thankful.

Andrew
11-26-01, 07:30 AM
Yes, we have detailed instructions at:

http://powweb.com/support/404.html

xero-infinity
11-26-01, 07:35 AM
What kind of file? text? Im new to this kind of stuff. Sorry for asking so many questions. I know basic HTML and some more experianced stuff, but thats about it.

TheBrainCel
11-26-01, 08:28 AM
create the HTML page (name it "error.html") you want to use as your error message and upload it to your "htdocs" directory.

Next, create a '.htaccess' file (name it ".htaccess") and copy and paste the follow text below(between the "+"). Replace "yoursite.com" with your actual domain name.

++++++++++++++++++++++++++++++++

ErrorDocument 404 http://www.yoursite.com/error.html

++++++++++++++++++++++++++++++++

Upload this file to your "htdocs" directory.

Thats It

I hope more clear ;)

xero-infinity
11-26-01, 08:36 AM
I got it to work. Thanks guys.