使用htaccess将m子域重定向到www

时间:2015-10-28 16:33:28

标签: apache .htaccess mod-rewrite

我需要将网站从旧的移动子域“m.example.com”重定向到其新的响应域“www.example.com”。它还需要重定向子目录,例如m.site.com/about/,现在应该将用户带到www.example.com/about /

它在Apache2和Ubuntu上运行。

这是.htaccess文件以及我认为应该工作的内容:

RewriteEngine On

RewriteCond %{HTTP_HOST} ^m\.example\.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1/ [R=301,NC,L]

我也尝试过这种方法,但它也失败了:Redirecting Subdomain to WWW using .htaccess

0 个答案:

没有答案