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>
謝謝。