web.config如何實現301跳轉


.htaccess的301定向非常簡單,那么web.config的301定向又應該怎么實現呢?

先來看下,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>

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

<?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 不能相同

整站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>

沒錯,就是這么簡單!

 

 

原文鏈接: http://www.sjyhome.com/articles/web-config-301.html


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM