1

我正在将网站从旧的传统 (m.) url 重定向到响应式设计 url。

这是我的 url 和 htaccess 示例。

Old traditional URL => New Responsive design URL 

m.mydomain.com => mydomain.com
m.mydomain.com/mobiles.html => mydomain.com/mobiles
m.mydomain.com/mobiles/android-phones.html => mydomain.com/mobiles/android-phones-price.html
m.mydomain.com/mobiles/android/samsung-phones.html => mydomain.com/mobiles/samsung/android-phones.html

.htaccess

RedirectMatch 301  m.mydomain.com/mobiles/android/(.*)-phones.html mydomain.com/mobiles/$1/android-phones.html

但我收到 Internal Server Error (500) 。如何解决此问题。

4

1 回答 1

2

您不能使用RedirectMatch指令匹配主机名。改用mod_rewrite规则:

RewriteEngine On

RewriteCond %{HTTP_HOST} ^m\.mydomain\.com$ [NC]
RewriteRule ^$ http://mydomain.com/ [L,R=301]

RewriteCond %{HTTP_HOST} ^m\.mydomain\.com$ [NC]
RewriteRule ^mobiles\.html$ http://mydomain.com/mobiles [L,NC,R=301]

RewriteCond %{HTTP_HOST} ^m\.mydomain\.com$ [NC]
RewriteRule ^mobiles/android-phones\.html$ http://mydomain.com/mobiles/android-phones-price.html [L,NC,R=301]

RewriteCond %{HTTP_HOST} ^m\.mydomain\.com$ [NC]
RewriteRule ^mobiles/android/samsung-phones\.html$ http://mydomain.com/mobiles/samsung/android-phones.html [L,NC,R=301]
于 2014-07-21T14:52:03.307 回答