Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Umbraco allow non-umbraco subdomains

Tags:

umbraco

Hi I am installing Umbraco to the root directory of my website. And also I want to install my wordpress blog to a subfolder in the root directory.

However any request to the subfolder is being intercepted by Umbraco and it is showing that document URL cannot be found. Is there a way to make Umbraco ignore certain subdomains?

like image 975
ganeshran Avatar asked Oct 03 '10 19:10

ganeshran


2 Answers

You can tell Umbraco to ignore certain paths or folders in the web.config.

You need to update the following entry in the appSetting section of the web.config:

umbracoReservedPaths

Add the subfolder you wish Umbraco to ignore in there.

i.e.

<add key="umbracoReservedPaths" value="/umbraco,/install/,/wordpress/" />

There are more details on the Umbraco web.config settings in on our.umbraco.org

like image 77
Tim Avatar answered Oct 29 '22 11:10

Tim


it's useful for binding too:

<add key="umbracoReservedPaths" value="~/umbraco,~/install/,~/http-bind/" />

~/http-bind/

Thanks Tim Saunders

like image 33
user1226673 Avatar answered Oct 29 '22 11:10

user1226673