vote up 2 vote down star

I'm working on a client site who is using Umbraco as a CMS. I need to create a custom 404 error page. I've tried doing it in the IIS config but umbraco overrides that.

Does anyone know how to create a custom 404 error page in Umbraco? Is there a way to create a custom error page for runtime errors?

flag

57% accept rate

3 Answers

vote up 4 vote down

In /config/umbracoSettings.xml modify <error404>1</error404> 1 with the id of the page you want to show.

<errors>
   <error404>1</error404> 
</errors>

Other ways to do it can be found at Not found handlers

link|flag
How can I find the page id? – Gthompson83 Sep 26 '08 at 16:43
You can find the page ID by going to the Umbraco admin, and looking at the status when hovering over the page. – Kearns Oct 7 '08 at 18:36
vote up 2 vote down

umbraco also supports culture dependent error pages in case you're working with multilingual sites...

Config changes a tiny bit. Instead of

<errors>
  <error404>1050</error404>
</errors>

you'd now write

<errors>
  <errorPage culture="default">1</errorPage>-->
  <errorPage culture="en-US">200</errorPage>-->
</errors>

Cheers, /Dirk

link|flag
vote up 1 vote down

Its umbracoSettings.config in Umbraco 4.

link|flag

Your Answer

Get an OpenID
or

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