질문:
다음과 같은 상황에 직면합니다.
"vmsomething"시스템에 배포 된 ASP.NET .NET 4.0 웹 응용 프로그램
IIS 7.5에서 실행되는 웹 응용 프로그램은 vmsomething의 d : \ webs \ myapplication에 있습니다.
응용 프로그램의 구성 파일 :
connections.config
<?xml version="1.0"?>
<connectionStrings>
<remove name="server"/>
<add name="server" connectionString="Data Source=OUR_DB_Server;Initial Catalog=MY_INITIAL_CATALOG;Persist Security Info=False;User Id=OUR_DB_User;Password=OUR_TOP_SECRET_PASSWORD;MultipleActiveResultSets=False;Packet Size=4096;Application Name="MyApplication"" providerName="System.Data.SqlClient"/>
</connectionStrings>
web.config :
<?xml version="1.0"?>
<configuration>
<connectionStrings configSource="connections.config"/>
<system.web>
<roleManager enabled="true" defaultProvider="AspNetWindowsTokenRoleProvider"/>
<compilation strict="true" explicit="true">
<assemblies>
<add assembly="System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="Microsoft.JScript, Version=8.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
</assemblies>
</compilation>
<authentication mode="Windows"/>
<pages>
<namespaces>
<clear/>
<add namespace="System"/>
</namespaces>
</pages>
<customErrors mode="Off">
<error statusCode="404" redirect="~/w8/index.html"/>
</customErrors>
<globalization uiCulture="de" culture="de-CH" requestEncoding="UTF-8" responseEncoding="UTF-8"/>
<httpRuntime maxRequestLength="2048000" executionTimeout="86400"/>
</system.web>
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
</system.webServer>
</configuration>
그런 다음 두 가지 방법으로 응용 프로그램에 액세스 할 수 있습니다.
방법 1 : http://vmsomething.com
방법 2 : http://vmsomething.com/my_application_virtdir(.com
없이 로컬 링크를 추가 할 수 없음)
이제 http://vmsomething.com 에서 응용 프로그램을 열 수 있습니다 . http://vmsomething.com/my_application_virtdir
에서 응용 프로그램을 열려고하면 이 오류가 발생합니다.
나는 서버의 관리자가 아니며 그가 어떻게 구성했는지 모르겠습니다.
이제 내 질문에 :
- 이 오류의 원인은 무엇입니까?
- 고치는 방법?