日期:2014-05-17  浏览次数:20456 次

UrlRewriter中加上301重定向,域名必须加www才能打开,不加www的话打不开
UrlRewriter中webpath.xml中加上301重定向,域名必须加www才能打开,不加www的话打不开。
webpath.xml中是这样写的

<if header="Host" match="^xxx.com$">
        <set status="301" />
        <redirect to="http://www.xxx.com/" />
    </if>
    <if header="Host" match="^xxx.net$">
        <set status="301" />
        <redirect to="http://www.xxx.com/" />
    </if>
    <if header="Host" match="^www.xxx.net$">
        <set status="301" />
        <redirect to="http://www.xxx.com/" />
    </if>
UrlRewriter 301 www能打开 不带www打不开

------解决方案--------------------
试试看302重定向。 
------解决方案--------------------
你的这些域名 是泛解析的么? 

不过实现301 很少见在UrlRewriter中去整的 有很多其它办法

比如:现在ISAPI_Rewrite3直接支持.htaccess文件