2015-11-20 77 views
0

如何使用web.config文件将asp页面(http://www.example.com/page.asp?id=11)重定向到另一个域(http://www.anothersite.com)。我使用下面的代码,但不工作。如何使用web.config文件301将asp页面重定向到另一个域

<configuration><location path="http://www.example.com/page.asp?id=11"><system.webServer><httpRedirect enabled="true" destination="http://www.anothersite.com" httpResponseStatus="Permanent" /></system.webServer></location></configuration> 

谢谢。

回答

相关问题