LoginSignup
0
1

More than 5 years have passed since last update.

ASP.NET > ASP.NET Core > HTTP エラー 500.19 0x80070003

Posted at
HTTP Error 500.19 - Internal Server Error
ページに関連する構成データが無効であるため、要求されたページにアクセスできません。

フォルダを移動して実行した際に 0x80070003エラーが出ることがある。

この対処法

image

image

それでもダメなら、

%USERPROFILE%\Documents\IISExpress\config\applicationhost.config in the following way -

C:\Windows\System32\inetsrv\config

の下、タグ内に件のフォルダが入っていればそこが原因である。
タグごと消してしまう。

<configuration>
  <system.applicationHost>
    <sites>
      <site name="wsBusinessLayer">
        <application path="/">
           <virtualDirectory path="/Flowers" physicalPath="D:\TFS\sys\companydomain.com\Dev\Flowers" />

.net - IIS Express - 500.19 Cannot read configuration file - because it's looking at the wrong path - Stack Overflow

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1