中文免费国产综合_日韩人妻系列无码专区久久_国产高清视频一区二区在线一区_網友分享91精品国产丝袜心得_乱伦三级高清中文_網友分享日韩性插心得_国产黄色成人短片_九九热线精品视频6在线_久久久亚洲精品免费视频_日本老妇欧美在线视频

93
如何設(shè)置301重定向

如要將example.com重定向到www.example.com,則配置web.config如下:

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

這條幫助是否解決了您的問(wèn)題? 已解決 未解決

提交成功!非常感謝您的反饋,我們會(huì)繼續(xù)努力做到更好! 很抱歉未能解決您的疑問(wèn)。我們已收到您的反饋意見(jiàn),同時(shí)會(huì)及時(shí)作出反饋處理!