织梦模板做网站的朋友都遇到一个问题就是程序默认的手机端是二级目录
如果二级目录已经收录了需要301重定向到二级域名怎么办?帮大家出个教程
例如
www.91084.com/m/  301到 m.91084.com
以下规则帮大家重定向到二级域名上面
Apache (.htaccess)
RewriteEngine On
RewriteBase /
RewriteRule ^m/(.*)$ http://m.91084.com/$1 [R=301,L]
Nignx (nginx.conf)
location ~* ^/m/ {
rewrite ^/m/(.*)$ http://m.91084.com/$1 permanent;
}
IIS+(web.config)
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
<rule name="二级目录301重定向到二级域名" stopProcessing="true">
<match url="^m/(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Redirect" url="http://m.91084.com/{R:1}"/>
</rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>
把上面文章的域名地址修改成自己的就可以了。