up vote 0 down vote favorite
share [g+] share [fb]

I know that you use .htaccess in the document-root directory in standard apache. What if I use Django? Can someone give me step by step how to create a custom 404 page?

THanks.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

The default 404 handler calls 404.html . You could edit that if you don't need anything fancy or can override the 404 handler by setting the handler404 view -- more here

link|improve this answer
feedback

In general the Django documentation is really great. Have a look at the Django Book for a great intoduction to Django. They cover the 404 page in chapter 3

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.