vote up 1 vote down star

Is there a way of running an ASP.NET website in a subfolder of the website?

As an example, say I wanted to run the screwturn wiki (http://www.screwturn.eu/) in a folder called "wiki" on my website, can I alter the web.config of the screwturn website to tell it that it is running in the "wiki" folder? (like saying that "~/" = "/wiki/")

The wiki would then find its assemblies that are in "~/bin" in "/wiki/bin" and the same for all other folders below the new root.

flag

I ended up having a new sub domain created for the wiki, so the site would be a root website. – Bernhard Hofmann Oct 22 at 7:27

3 Answers

vote up 1 vote down check

Piece of cake, you can either add a virtual directory to the root of the IIS website and point it at the path of your site or place it an a physical directory in the website root then turn it into an application by right-clicking on it in the IIS management console, going to properties and clicking "Create" next to application name.

link|flag
Although I didn't mention it, I do not have control of the web server. But this is the nearest to the solution I took, which was to create a subdomain (wiki.mydomainname.org). I'll mark this as the answer because your suggestions are on the mark had I had access to IIS on the ISPs box. – Bernhard Hofmann Oct 22 at 7:29
vote up 0 vote down

Short answer is YES you can. No need to specify the location of the folder in the Web.Config.

link|flag
I am assumming you have a web.config in the wiki folder. "/wiki/bin" is automatically located by the runtime. – o.k.w Oct 4 at 9:58
But the pages fail to load, claiming that "The file '/MasterPage.master' does not exist.". The aspx page directive has MasterPageFile="~/MasterPage.master". The question is how I make that resove to "/wiki/MasterPage.master" rather than "/MasterPage.master". – Bernhard Hofmann Oct 4 at 10:01
Is the "wiki" folder configured as an Application in IIS? – o.k.w Oct 4 at 10:02
No, it's just a folder under the main application folder which is running it's own website. – Bernhard Hofmann Oct 4 at 10:06
Will "wiki" be an independent app? If so, set the folder as an application. This will isolate the folder from the parent folder. – o.k.w Oct 4 at 10:07
vote up 0 vote down

I had to do this recently, and having made the wiki folder an application (as suggested in the previous answers) I also had to place a dummy 'App_Themes -> Default' folder at the top-level within the Wiki app because of the presence of the <pages styleSheetTheme="default" theme="default"> tag in the parent app's Web.config. Small hack, but that's the way I like to configure my styles in Asp.Net, and I didn't want to change that.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.