I need to set up some separate .NET web applications in a virtual directory within the same web as umbraco. I thought this would be a simple task as I would just create the virtual directory in IIS and point it to a folder outside of umbraco, but it appears that this isn't working.
I tried setting the umbraco umbracoReservedPaths to include the path of the virtual directory (for example ~/myapp/) but this doesn't seem to work. It looks like the URL Rewrite Module is causing the error. Here is what I receive:
Line 67: <httpModules>
Line 68: <!-- URL REWRTIER -->
Line 69: <add name="UrlRewriteModule" type="UrlRewritingNet.Web.UrlRewriteModule, UrlRewritingNet.UrlRewriter" />
Line 70: <add name="umbracoRequestModule" type="umbraco.presentation.requestModule" />
Line 71: <!-- UMBRACO -->
How do I go about achieving a non umbraco virtual directory within the same web?
Try wrapping the following around your system.web and (I think)
system.webserver tags in Umbraco's web.config to prevent the Umbraco
specific stuff from being inherited in the child app:
Non Umbraco Virtual Directory
Hello,
I need to set up some separate .NET web applications in a virtual directory within the same web as umbraco. I thought this would be a simple task as I would just create the virtual directory in IIS and point it to a folder outside of umbraco, but it appears that this isn't working.
I tried setting the umbraco umbracoReservedPaths to include the path of the virtual directory (for example ~/myapp/) but this doesn't seem to work. It looks like the URL Rewrite Module is causing the error. Here is what I receive:
Line 67: <httpModules> Line 68: <!-- URL REWRTIER --> Line 69: <add name="UrlRewriteModule" type="UrlRewritingNet.Web.UrlRewriteModule, UrlRewritingNet.UrlRewriter" /> Line 70: <add name="umbracoRequestModule" type="umbraco.presentation.requestModule" /> Line 71: <!-- UMBRACO -->
How do I go about achieving a non umbraco virtual directory within the same web?
Thanks,
Jim
Hi Jim,
Try wrapping the following around your system.web and (I think) system.webserver tags in Umbraco's web.config to prevent the Umbraco specific stuff from being inherited in the child app:
There are a few similar threads - see http://our.umbraco.org/forum/core/general/10733-Exclude-non-umbraco-web-application-%28subsite%29?p=1
-Tom
Thanks Tom - That worked wonderfully! I had searched but hadn't seen that specific thread.
Hello Tom,
Your link doesn't seem to be working anymore. It looks like it has moved here : http://our.umbraco.org/forum/core/general/10733-Exclude-non-umbraco-web-application-(subsite) ; (Just in case this helps anyone else out down the road....)
Thanks Tom. Solved my problem. Running wordpress inside my Umbraco installation
is working on a reply...