htaccess移动重定向

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了htaccess移动重定向相关的知识,希望对你有一定的参考价值。

  1. #redirect mobile browsers
  2. RewriteCond %{HTTP_USER_AGENT} ^.*iPhone.*$
  3. RewriteRule ^(.*)$ http://m.example.com [R=301]
  4. RewriteCond %{HTTP_USER_AGENT} ^.*iPad.*$
  5. RewriteRule ^(.*)$ http://m.example.com [R=301]
  6. RewriteCond %{HTTP_USER_AGENT} ^.*android.*$
  7. RewriteRule ^(.*)$ http://m.example.com [R=301]
  8. RewriteCond %{HTTP_USER_AGENT} ^.*BlackBerry.*$
  9. RewriteRule ^(.*)$ http://blackberry.example.com [R=301]
  10. RewriteCond %{HTTP_USER_AGENT} ^.*IEMobile.*$
  11. RewriteRule ^(.*)$ http://ie.example.com [R=301]

以上是关于htaccess移动重定向的主要内容,如果未能解决你的问题,请参考以下文章

.htaccess移动设备重定向

htaccess移动重定向

简单.htaccess移动重定向

apache_conf HTaccess移动重定向(仅限主页)

htaccess 301 重定向某些 URL 模式

具有排除条件的 301 重定向 (htaccess)