HTTP 500.19 - 错误的配置文件路径

时间:2016-12-06 11:21:40

标签: iis visual-studio-2015

我尝试运行我的项目是Visual Studio 15,但收到以下错误:

error

我知道配置文件路径错误,但我的问题是如何更改它?

1 个答案:

答案 0 :(得分:3)

您可以更改路径,如下所示。

C:\Users\xxx\Documents\IISExpress\config\applicationhost.config in the following way -
<configuration>
  <system.applicationHost>
    <sites>
      <site name="TestWebSite">
        <application path="/">
           <virtualDirectory path="/" physicalPath="C:\myWork\Dev\" />

请仅在物理路径标记内更改路径。

如果您已将应用程序托管在网络驱动器中,请尝试将其移至本地驱动器上。