ウェブサイトを古い従来の (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) が発生しています。この問題を修正する方法。