web怎么做301跳转 网页301跳转

主机教程 建站分享 2年前 (2022-12-17) 496次浏览

文章摘要:web怎么做301跳转 网页301跳转

web做301跳转的方法: 1.例如在web.config文件中的301格式: <?xml v […]

web做301跳转的方法:

1.例如在web.config文件中的301格式:

<?xml version="1.0" encoding="UTF-8"?>

<configuration>

<system.webServer>

<rewrite>

<rules>

<rule name="Redirect(命名)" stopProcessing="true">

<match url="^(要重定向的页面)" />

<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />

<action type="Redirect" url="(重定向到的页面)" />

</rule>

</rules>

</rewrite>

</system.webServer>

</configuration>

2.多个页面跳转,代码如下:

<?xml version="1.0" encoding="UTF-8"?>

<configuration>

<system.webServer>

<rewrite>

<rules>

<rule name="Redirect" stopProcessing="true">

<match url="^abc/001.html" />

<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />

<action type="Redirect" url="http://" /&gt;

<rule name="Redirect2" stopProcessing="true">

<match url="^abc/002.html" />

<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />

<action type="Redirect" url="http://" /&gt;

</rule>

</rules>

</rewrite>

</system.webServer>

</configuration>

//注意:多个页面跳转时,rule name不能相同

3.整站301跳转,代码如下

<?xml version="1.0" encoding="UTF-8"?>

<configuration>

<system.webServer>

<rewrite>

<rules>

<rule name="WWW Redirect" stopProcessing="true">

<match url=".*" />

<conditions>

<add input="{HTTP_HOST}" pattern="^需要转的域名$" />

</conditions>

<action type="Redirect" url="http://要转到的域名/{R:0}"

redirectType="Permanent" />

</rule>

</rules>

</rewrite>

</system.webServer>

</configuration>


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:web怎么做301跳转 网页301跳转
文章链接:http://www.7966.org/post/16910.html
转载请注明出处

喜欢 (0)