With the default install of Umbraco when a page errors that is not a .aspx page, the ugly IIS 404 error page will be set. Regardless of if you have configured one in Umbraco.
To avoid this add the following code to your web.config, in the <system.webServer> section.
<!-- Push 404 errors to a page that doesn't exist, so the Umbraco error page triggers -->
<httpErrors errorMode="Custom">
<remove statusCode="404" subStatusCode="-1" />
<error statusCode="404" prefixLanguageFilePath="" path="/non-existing-page.aspx" responseMode="ExecuteURL" />
</httpErrors>
Aight, it's great you want to share information and experience, but I don't think this is the correct place to do so... A blog or general forum topic is more suitable imo, because I'm trying to keep this forum clean.
Displaying a friendly error page for all URLs
With the default install of Umbraco when a page errors that is not a .aspx page, the ugly IIS 404 error page will be set. Regardless of if you have configured one in Umbraco.
To avoid this add the following code to your web.config, in the <system.webServer> section.
I'm not really sure if this has got anything to do with the Url Tracker?
Just a useful bit of information, if you are working on migration project, e.g. lots of old PHP urls.
Aight, it's great you want to share information and experience, but I don't think this is the correct place to do so...
A blog or general forum topic is more suitable imo, because I'm trying to keep this forum clean.
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.