I've built a WebDeploy package of my ASP.NET MVC 4 website in Visual Studio 2012.
When I run the deployer on my server, it successfully deploys the website to a subdir on my server called /myapp
However, when I navigate to localhost/myapp in a browser, I get a 404. It appears IIS is looking for a physical path (one-to-one). How can I config IIS, or setup a rewrite rule, so that /myapp functions within itself?
For example, links and redirects that the website has are pointing to localhost/static/style.css, when they should be pointing to localhost/myapp/static/style.css