在IISExpress中使用自定义URL作为基本URL

时间:2018-07-18 02:29:34

标签: asp.net iis-express

我有一个使用IISExpress的项目。 假设网站项目的名称是:AdventureWorks

当我在VS中运行该应用程序时,它将转到http://localhost:12345/

但是我希望它使用网站项目作为基本URL,例如:http://localhost:12345/AdventureWorks

我尝试在项目的“属性页”>“服务器”>“用户自定义服务器”>“基本URL”中进行设置:http://localhost:12345/AdventureWorks

但是它似乎不起作用。我收到以下错误消息: enter image description here

有什么想法吗?

1 个答案:

答案 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" /> 的位置。