Accessing static content of an ASP.Net MVC project with IIS7 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T08:37:32Z http://stackoverflow.com/feeds/question/1031876 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1031876/accessing-static-content-of-an-asp-net-mvc-project-with-iis7 2 Accessing static content of an ASP.Net MVC project with IIS7 J. Pablo Fernández 2009-06-23T10:59:54Z 2009-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#1031904 1 Answer by Lazarus for Accessing static content of an ASP.Net MVC project with IIS7 Lazarus 2009-06-23T11:05:32Z 2009-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#1032365 1 Answer by chris166 for Accessing static content of an ASP.Net MVC project with IIS7 chris166 2009-06-23T12:49:32Z 2009-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#1035692 3 Answer by J. Pablo Fernández for Accessing static content of an ASP.Net MVC project with IIS7 J. Pablo Fernández 2009-06-23T22:56:02Z 2009-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#1516920 0 Answer by Vern for Accessing static content of an ASP.Net MVC project with IIS7 Vern 2009-10-04T17:21:09Z 2009-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>