ASP.NET Virtual Path Maps To Another Application Which Is Not Allowed

六眼飞鱼酱① 提交于 2019-12-22 03:20:04

问题


I have a website that was building without any issue on multiple servers.
But, when I copy/move it on the same machine from one folder to another folder: I started getting the error

The Virtual Path Maps To Another Application Which Is Not Allowed.

What am I doing wrong?


回答1:


The source of this problem is that when one copies an ASP.NET Web Site to a new folder -- the properties setting associated with the solution "Virtual Path" is set to the folder name and not the root. The solution is to change the Virtual Path setting from the folder name to "/".

This can be found by right click the project and opening the properties dialog: Solution->Properties->Virtual Path-> Change to "/"




回答2:


Additional check: Missing global.asax also causes the same error.




回答3:


This isn't why your error happened but it may be useful to someone researching the problem who ends up here.

If your web app is running as an application within another IIS site (set via the IIS administration tool) and is attempting to reach resources of the other site by means such as HttpResponse.Redirect, make sure the project isn't set to use a separate IIS in Visual Studio. If it is, it may be firing up inside a different IIS than the rest of the site.



来源:https://stackoverflow.com/questions/19277350/asp-net-virtual-path-maps-to-another-application-which-is-not-allowed

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!