web.config如何實現301跳轉

.htaccess的301定向很是簡單,那麼web.config的301定向又應該怎麼實現呢?php

先來看下,web.config中的301格式html

<?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>

多個頁面跳轉代碼以下,以此類推web

<?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://" /> <rule name="Redirect2" stopProcessing="true"> <match url="^abc/002.html" /> <conditions logicalGrouping="MatchAll" trackAllCaptures="false" /> <action type="Redirect" url="http://" /> </rule> </rules> </rewrite> </system.webServer> </configuration>

多個頁面跳轉時,rule name 不能相同url

整站301跳轉spa

<?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>

沒錯,就是這麼簡單!xml

 

 

原文連接: http://www.sjyhome.com/articles/web-config-301.htmlhtm

相關文章
相關標籤/搜索