我有一个使用IISExpress的项目。 假设网站项目的名称是:AdventureWorks
当我在VS中运行该应用程序时,它将转到http://localhost:12345/
但是我希望它使用网站项目作为基本URL,例如:http://localhost:12345/AdventureWorks
我尝试在项目的“属性页”>“服务器”>“用户自定义服务器”>“基本URL”中进行设置:http://localhost:12345/AdventureWorks
有什么想法吗?
答案 0 :(得分:0)
我通过编辑npm update awesomeLibrary
进行了一些解决。 applicationhost.config
有2种类型,一种在applicationhost.config
中,一种在项目C:\Users\[Username]\Documents\IISExpress\config
内部。显然,在此解决方案中使用了.vs\config
,我添加了:
.vs\config
这样它也将映射<virtualDirectory path="/AdventureWorks" physicalPath="D:\Codes\AdventureWorks\trunk\Project\AdventureWorks" />
的位置。