htaccess移动重定向
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了htaccess移动重定向相关的知识,希望对你有一定的参考价值。
#redirect mobile browsers RewriteCond %{HTTP_USER_AGENT} ^.*iPhone.*$ RewriteRule ^(.*)$ http://m.example.com [R=301] RewriteCond %{HTTP_USER_AGENT} ^.*iPad.*$ RewriteRule ^(.*)$ http://m.example.com [R=301] RewriteCond %{HTTP_USER_AGENT} ^.*android.*$ RewriteRule ^(.*)$ http://m.example.com [R=301] RewriteCond %{HTTP_USER_AGENT} ^.*BlackBerry.*$ RewriteRule ^(.*)$ http://blackberry.example.com [R=301] RewriteCond %{HTTP_USER_AGENT} ^.*IEMobile.*$ RewriteRule ^(.*)$ http://ie.example.com [R=301]
以上是关于htaccess移动重定向的主要内容,如果未能解决你的问题,请参考以下文章