のファイルに特定の値がmapped
あります。ファイルを参照すると、で動作します。しかし、このアプリケーションを本番環境にデプロイすると機能しません。エラー: " " が表示されます 理由がわかりませんか?web.config
URL Mapping
localhost
IIS
404: The resource cannot be found.
何か案が?
Web.config マークアップ:
<urlMappings enabled="true">
<add url="~/Pune" mappedUrl="~/City.aspx?ID=1"/>
</urlMappings>
.aspx ファイル:
<a href="Pune">Pune City</a>
検索した後、次のような手がかりが得られました。
<urlMappings enabled="true">
<add url="~/Pune" mappedUrl="http://mycustomdomain.com/City.aspx?ID=1"/>
</urlMappings>
しかし、残念ながらこれもうまくいきません..!
IIS
他に何か..またはweb.config
ファイルで設定を行う必要がありますか?