I am trying to create a custom 404 error page. The instructions that I found say to create a .htaccess empty text document when I do that Windows tells me to put a file name on it. Can someone tell what I need to do or point me to a tutorial for making custom 404 error pages?

link|improve this question

Windows version? – yoda Aug 13 '11 at 17:40
What platform are you on? What web server? We need little details like those in order to answer such a question. – Oded Aug 13 '11 at 17:40
Also, you can use another file editor like Notepad++ (free) to edit and save the .htaccess without a name on Windows. – yoda Aug 13 '11 at 17:41
No web server. And I am on Windows 7. I am just trying to get the error page created. – user770022 Aug 13 '11 at 17:42
feedback

4 Answers

up vote 0 down vote accepted

It seems like you're just trying to make the page itself (according to the commentary on the question). To create the page just make a file of any name .html or whatever format you wish to use (.php for php for example) and write it up using your language of choice. Once you create the 404 page you need to specify it's location, assuming you're uploading this to a site of yours. This should be editable in a control panel like CPanel for example. If not, you'll need to edit your apache config to specify it's location or make and upload an .htaccess file to specify it's location.

link|improve this answer
feedback

The problem is that Windows Explorer doesn't let you create file with name .htaccess. Instead of creating the file with Windows Explorer, open a Notepad and save the file with name .htaccess. Don't forget to change "Save as type" to "All Files (*.*)", otherwise it will add .txt extension to it.

link|improve this answer
feedback

Assuming you are using Apache and .htaccess is not activated you use

# this is in .htaccess in the root directory of the webspace
ErrorDocument 404 /url/to/error/page.html
link|improve this answer
feedback

I've found this link, http://www.thesitewizard.com/archive/custom404.shtml, which I hope that will be useful for you,

Best regards.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.