首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

UrlRewriter中加上301重定向,域名务必加www才能打开,不加www的话打不开

2013-09-25 
UrlRewriter中加上301重定向,域名必须加www才能打开,不加www的话打不开UrlRewriter中webpath.xml中加上301

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文件

热点排行