Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
I would like to have a page called HelloWorld.aspx in my root which has nothing to do with the umbraco CMS.
Is this possible? Right now I get a 404 error when I try to go to that HelloWold.aspx page.
Cheers
Hi Timothy, welcome to the forum!
To reserve a file/page that is served outside of Umbraco, you will need to add it to the Web.config AppSettings:
<add key="umbracoReservedUrls" value="~/config/splashes/booting.aspx,~/install/default.aspx,~/config/splashes/noNodes.aspx,~/HelloWorld.aspx" />
If you wanted to add an entire folder, (e.g. to tell Umbraco to ignore it), then there is a setting called "umbracoReservedPaths".
Cheers, Lee.
Worked like a charm :-) Thx!
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
HelloWorld.aspx
I would like to have a page called HelloWorld.aspx in my root which has nothing to do with the umbraco CMS.
Is this possible? Right now I get a 404 error when I try to go to that HelloWold.aspx page.
Cheers
Hi Timothy, welcome to the forum!
To reserve a file/page that is served outside of Umbraco, you will need to add it to the Web.config AppSettings:
<add key="umbracoReservedUrls" value="~/config/splashes/booting.aspx,~/install/default.aspx,~/config/splashes/noNodes.aspx,~/HelloWorld.aspx" />
If you wanted to add an entire folder, (e.g. to tell Umbraco to ignore it), then there is a setting called "umbracoReservedPaths".
Cheers, Lee.
Worked like a charm :-) Thx!
is working on a reply...