htaccess重写不会更改浏览器地址栏

时间:2015-12-18 20:31:02

标签: apache .htaccess mod-rewrite

我觉得我在这里遗漏了一些东西。我们最初使用子域(m.example.com)进行移动流量。我们现在希望停止使用它,并且我们希望所有访问m.example.com页面的用户都被重定向到example.com。一切似乎都运行正常,但浏览器中的地址栏永远不会改变。如果用户键入m.example.com,则相同的域仍保留在地址栏中。我错过了什么?以下是我的htaccess中的重写:

RewriteEngine on
  RewriteRule ^ - [E=protossl]
  RewriteCond %{HTTPS} on
  RewriteRule ^ - [E=protossl:s]

  #custom redirects
  #RewriteCond %{HTTP_HOST} ^example.com
  #RewriteRule ^(.*)$ http://www.example.com/$1 [R=permanent,L]

1 个答案:

答案 0 :(得分:1)

您可以使用:

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