如何使用 web.config 文件将 asp 页面 301 重定向到另一个域
How to 301 redirect asp page to another domain using web.config file
如何使用 web.config 文件重定向 asp 页面 (http://www.example.com/page.asp?id=11) to another domain (http://www.anothersite.com)。我使用了下面的代码但没有用。
<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>
谢谢。
您最好使用 URLRewrite 或向自定义错误页面处理添加一些合适的逻辑。
看看这个问题的答案Configuring custom ASP 404 page with redirect for IIS7 website
如何使用 web.config 文件重定向 asp 页面 (http://www.example.com/page.asp?id=11) to another domain (http://www.anothersite.com)。我使用了下面的代码但没有用。
<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>
谢谢。
您最好使用 URLRewrite 或向自定义错误页面处理添加一些合适的逻辑。
看看这个问题的答案Configuring custom ASP 404 page with redirect for IIS7 website