web.config实现全站301转向
部分租用香港虚拟主机用户,需要把老站301全站到新站上,刚好我们的空间是win版空间,您可以使用web.config方式进行301跳转。
方式如下:
您把下面的代码拷贝到记事本中,然后把记事本文件名改为web.config,传到空间的web目录下,即可实现全站301跳转,快试试吧!
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <httpRedirect enabled="true" destination="http://www.dxsweitao.com" httpResponseStatus="Permanent" /> </system.webServer> </configuration>