サーバー 2003 で IIS6 を使用しています。従来の ASP を使用する Web サイトがいくつかあります。これで、ASP.NET を使用する 1 つの Web サイトができました。この asp.net Web サイトは、従来の ASP Web サイトと同じサーバー上にあります。
最近まで、ユーザーはブックマークを持っています (ブックマークを持っているユーザーはたくさんいます)。
http://www.myasp.com/weather と http://www.myasp.com/weather/default.asp が読み込まれます。
この ASP.NET (" http://www.myNet.com/weatherNet ") Web サイトを IIS6 のサーバー 2003 上に作成した後、
ユーザーが (クラシック ASP) http://www.myasp.com/weatherにアクセスすると、次のエラー メッセージが表示されます。
Server Error in '/' Application.
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
ユーザーが「 http://www.myasp.com/weather 」を入力またはブックマークするときに、従来の ASP「 http://www.myasp.com/weather/default.asp」をロードするにはどうすればよいですか?
また、" http://www.myNet.com/weatherNet " を (ASP.NET) " http://www.myNet.com/weatherNet/default.aspx "にロードするにはどうすればよいですか?
IIS と ASP が既に許可されており、ASP.Net v4.0.30319 が許可されていることを確認しました。