You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I recently created an application (Umbraco version 7.6.1) which contains 2 or more Websites and I gave separate 404 page for each home. But the page redirect to first 404 page for each website, Does this work for multiple websites?
The text was updated successfully, but these errors were encountered:
You all may have already found a solution, but for me, a couple of different changes in configuration fixed this.
One way was to change the error404 node value in the umbracoSettings.config file to an ID that didn't exist - e.g., 1.
<errors> <error404>1</error404> </errors>
Doing this meant the 404handlers wouldn't find an umbraco node and IContentFinder class in this package would take over and correctly load the 404 pages I've set.
A second way I tried was to simply remove (comment out) the handler nodes in the 404handlers.config file.
<NotFoundHandlers></NotFoundHandlers>
This would mean that the IContentFinder class in this package would be the only one finding the 404 page.
Hi,
I recently created an application (Umbraco version 7.6.1) which contains 2 or more Websites and I gave separate 404 page for each home. But the page redirect to first 404 page for each website, Does this work for multiple websites?
The text was updated successfully, but these errors were encountered: