Setting up virtual directory when using IIS for ASP.NET MVC debugging - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T18:44:40Z http://stackoverflow.com/feeds/question/821164 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/821164/setting-up-virtual-directory-when-using-iis-for-asp-net-mvc-debugging 4 Setting up virtual directory when using IIS for ASP.NET MVC debugging ycseattle 2009-05-04T17:51:55Z 2009-11-24T06:20:21Z <p>I am trying to use IIS for debugging ASP.NET MVC in Visual Studio. The problem is that if I choose "Use Local IIS Web server" in Visual Studio, I have to choose a virtual directory, something like <a href="http://localhost/myapp/" rel="nofollow">http://localhost/myapp/</a></p> <p>This is a problem because the ASP.NET MVC application is assumed to run from the root directory and the MVC would parse "myapp" as a controller, and when I run the app from Visual Studio/IIS, subsequent requests will be directed to the root anyway.</p> <p>How to solve this problem? Is there a way to use the IIS website root instead of a virtual directory for Visual Studio debugging?</p> http://stackoverflow.com/questions/821164/setting-up-virtual-directory-when-using-iis-for-asp-net-mvc-debugging/821790#821790 1 Answer by Joseph Kingry for Setting up virtual directory when using IIS for ASP.NET MVC debugging Joseph Kingry 2009-05-04T20:09:32Z 2009-05-04T20:09:32Z <p>Yes you can run an ASP.NET MVC as the root application. </p> <p>Just use IIS manager to set the home directory for the website to the your application's path. </p> <p>Then make the appropriate changes in the "Web" tab of your project settings for MVC in Visual Studio.</p> <p>This is assuming you have windows file permission setup correctly for IIS already.</p> http://stackoverflow.com/questions/821164/setting-up-virtual-directory-when-using-iis-for-asp-net-mvc-debugging/823676#823676 0 Answer by Syam for Setting up virtual directory when using IIS for ASP.NET MVC debugging Syam 2009-05-05T07:03:00Z 2009-05-05T07:03:00Z <p>Go to the properties of your website(under Project Menu). Select the web tab at the bottom and type in the same virtual directory name you use in IIS in the virtual path field. This might solve your problem</p> http://stackoverflow.com/questions/821164/setting-up-virtual-directory-when-using-iis-for-asp-net-mvc-debugging/826454#826454 1 Answer by Ole Lynge for Setting up virtual directory when using IIS for ASP.NET MVC debugging Ole Lynge 2009-05-05T19:09:06Z 2009-05-05T19:09:06Z <p>You say that </p> <blockquote>the ASP.NET MVC application is assumed to run from the root directory and the MVC would parse "myapp" as a controller</blockquote> <p>However, it is possible to run ASP.NET MVC from a virtual directory by adding wildcard mapping as described in this article:</p> <p><a href="http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx" rel="nofollow">ASP.NET MVC on IIS 6 Walkthrough</a></p> <p>See also <a href="http://stackoverflow.com/questions/802253">this question</a> here on stackoverflow, and the <a href="http://stackoverflow.com/questions/802253#804062">accepted answer</a> which describes the steps followed to solve a similar problem:</p> <p><a href="http://stackoverflow.com/questions/802253">ASP.NET MVC How-to use routes when application is published as SubProject of a domain?</a></p> http://stackoverflow.com/questions/821164/setting-up-virtual-directory-when-using-iis-for-asp-net-mvc-debugging/849949#849949 0 Answer by AaronSieb for Setting up virtual directory when using IIS for ASP.NET MVC debugging AaronSieb 2009-05-11T20:32:39Z 2009-05-11T20:32:39Z <p>You can also use Debug->Attach to Process from Visual Studio instead of Start Debugging.</p> <p>Attach to aspnet_wp.exe, and you'll be able to debug your MVC application regardless of whether or not it's in a virtual directory.</p> http://stackoverflow.com/questions/821164/setting-up-virtual-directory-when-using-iis-for-asp-net-mvc-debugging/1788181#1788181 0 Answer by Alex Ilyin for Setting up virtual directory when using IIS for ASP.NET MVC debugging Alex Ilyin 2009-11-24T06:20:21Z 2009-11-24T06:20:21Z <p>Url rewriting can help you to solve the problem. I've implemented solution allowing to deploy MVC application at any IIS version even when virtual hosting is used. <a href="http://www.codeproject.com/KB/aspnet/iis-aspnet-url-rewriting.aspx" rel="nofollow">http://www.codeproject.com/KB/aspnet/iis-aspnet-url-rewriting.aspx</a></p>