我在Microsoft Azure上有一个网站" www.oldwebsite.com" 。 首先,如果有人试图进入网址" www.oldwebite.com/explorer/9:53" ,则会转到某个页面。现在我已将我的网站转移到" web.oldwebsite.com" 。 我想重定向 www.oldwebite.com/explorer/9:53 (此页面不存在,因为我将我的网站转移到网络应用程序)到 www.web.oldwebsite.com /资源管理器/ 9:53 我已经配置了我的web.config文件:
<configuration>
<system.web>
<customErrors mode="On" defaultRedirect="http://web.oldwebsite.com/"/>
</system.web>
</configuration>
现在,如果我运行此功能,则会在网址中显示此http://web.oldwebsite.com/?aspxerrorpath=/explorer/9:53,然后转到 web.oldwebsite.com
我希望它转到http://web.oldwebsite.com/explorer/9:53
请帮助!!