关于我们

质量为本、客户为根、勇于拼搏、务实创新

< 返回新闻公共列表

如何把网页301到其他网址

发布时间:2022/8/13 17:04:21
香港云服务器

xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="301Redirect" stopProcessing="true"> <match url="(.*)" /> <conditions logicalGrouping="MatchAny"> <add input="{HTTP_HOST}" pattern="^xxx.com$" /> conditions> <action type="Redirect" url="http://www.xxx.com/{R:0}" redirectType="Permanent" /> rule> rules> rewrite> system.webServer> configuration>


image.png


把以上代码写入web.conf中即可

把改为x.com改为需要重定向的网址

把3w.x.com改为重定向到的网址