Does Umbraco allow non-umbraco subdomains
Asked Answered
F

4

12

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?

Ferrosilicon answered 3/10, 2010 at 19:32 Comment(0)
F
19

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

Florey answered 4/10, 2010 at 8:50 Comment(2)
Thanks a lot for the reply Tim, but I already had found the answer through a old blog post by an Umbraco developer. Though this might be useful to others.Ferrosilicon
@Ferrosilicon if this is the answer that other people need, then mark it as the answer.Pyrexia
W
2

it's useful for binding too:

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

~/http-bind/

Thanks Tim Saunders

Woodpile answered 22/2, 2012 at 19:20 Comment(0)
D
0

You can also use umbracoReservedUrls to tell umbraco to ignore specific pages:

<add key="umbracoReservedUrls" value="/mypages/regular-page.aspx" /> 
Derickderide answered 4/2, 2015 at 12:30 Comment(0)
F
0

This can be set up with in IIS by setting up the blog as a separate application with in the umbraco site.

However if you are trying to make a sub-domain there is no reason why this should be in the same site, I would say it is best to create a separate site with in IIS or purchase another hosting account to host the blog separately

Faux answered 15/2, 2015 at 13:23 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.