Accessing static content of an ASP.Net MVC project with IIS7 - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T08:37:32Zhttp://stackoverflow.com/feeds/question/1031876http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1031876/accessing-static-content-of-an-asp-net-mvc-project-with-iis72Accessing static content of an ASP.Net MVC project with IIS7J. Pablo Fernández2009-06-23T10:59:54Z2009-10-04T17:21:09Z
<p>I've create a web site on my local IIS 7 with my own ASP.Net MVC project on its root. </p>
<p>Everything is working fine except for the static content. Going to <a href="http://localhost:8080/Content/Site.css" rel="nofollow">http://localhost:8080/Content/Site.css</a> gives me a 404. I can see the folder on IIS Manager. </p>
<p>The content is served fine with the small development server you get when you run the application on Visual Studio 2008. Any ideas what might be wrong?</p>
http://stackoverflow.com/questions/1031876/accessing-static-content-of-an-asp-net-mvc-project-with-iis7/1031904#10319041Answer by Lazarus for Accessing static content of an ASP.Net MVC project with IIS7Lazarus2009-06-23T11:05:32Z2009-06-23T11:05:32Z<p>Try going to <a href="http://localhost:8080/../../Content/Site.css" rel="nofollow">http://localhost:8080/../../Content/Site.css</a>, not sure if your original URL is matching a route.</p>
<p>Not really a programming question though.</p>
http://stackoverflow.com/questions/1031876/accessing-static-content-of-an-asp-net-mvc-project-with-iis7/1032365#10323651Answer by chris166 for Accessing static content of an ASP.Net MVC project with IIS7chris1662009-06-23T12:49:32Z2009-06-23T12:49:32Z<p>How about</p>
<pre><code>routes.RouteExistingFiles = true;
</code></pre>
<p>in your Global.asax?</p>
http://stackoverflow.com/questions/1031876/accessing-static-content-of-an-asp-net-mvc-project-with-iis7/1035692#10356923Answer by J. Pablo Fernández for Accessing static content of an ASP.Net MVC project with IIS7J. Pablo Fernández2009-06-23T22:56:02Z2009-06-23T22:56:02Z<p>The problem was permissions. Even though when I create the IIS7 web site I told it to access the files as my user (it wouldn't work at all otherwise), for static file it was using the user of the application pool. Giving access to IIS APPPOOL\MyApplication to the folder where my project was fixed the issue.</p>
http://stackoverflow.com/questions/1031876/accessing-static-content-of-an-asp-net-mvc-project-with-iis7/1516920#15169200Answer by Vern for Accessing static content of an ASP.Net MVC project with IIS7Vern2009-10-04T17:21:09Z2009-10-04T17:21:09Z<p>Hi,</p>
<p>Has anyone come up with a solution to this problem? I am running windows 7 with IIS7 and my project has started suffering from this problem too. I tried publising an unaltered asp.net mvc 2 application and it too could not read any static content.</p>