A comma-seperated list of files to be left alone by Umbraco, these files will be served, and the Umbraco request pipeline will not be triggered.
Reserved paths
A comma-separated list of all the folders in your directory to be left alone by Umbraco. If you have folders with custom files, add them to this setting to make sure Umbraco leaves them alone.
Custom routing at Umbraco13?
Hi, I need to have some pages that external to my Umbraco website.
Which means, I need something like: myumbracosite.com/external-url
So I can create a folder on the ftp: /external-url
and to be able to navigate to this folder
but I'm getting page not found
in the past I could do it through the web.config
How do I do it in Umbraco 13 ?
Any idea?
I saw in the documentation I can achieve it by editing
in Startup.cs
or something with the Reserved paths
But not sure.
Any idea?
Thanks
Hi Meni.
You might be able to achive it by setting the ReservedUrls or ReservedPaths in the appSettings.json.
Reserved urls
A comma-seperated list of files to be left alone by Umbraco, these files will be served, and the Umbraco request pipeline will not be triggered.
Reserved paths
A comma-separated list of all the folders in your directory to be left alone by Umbraco. If you have folders with custom files, add them to this setting to make sure Umbraco leaves them alone.
https://docs.umbraco.com/umbraco-cms/reference/configuration/globalsettings
Hi, thanks.
Didn't work.
I added both in appsetting.json and appsetting.production.json the follwoing
"Umbraco": { "CMS": { "Global": { "Id": "**********", "SanitizeTinyMce": true, "ReservedPaths":"~/my-folder/"
and when navigate to
mysite.com/my-folder
still getting page not foundany idea?
Thanks
In your case i think you might need to set both the ReservedUrls and ReservedPaths like:
Since you host files in the map and wanna be able to navigate to the maps url.
Still not working ...
is working on a reply...