Quote:
Originally Posted by mromro
Anyone care to share their mobile redirect code for .htaccess?
I don't think the one I am useing now is detecting all the devices.
|
here is one i use:
Code:
#HTACCESS MOBILE SITE REDIRECTION CODE
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} (opera\ mini|ipod|iphone|up\.browser|up.link|mmp|symbian|smartphone|midp|wap|vodafone|o2|pocket|kindle|mobile|pda|psp|treo|nokia|blackberry|android) [NC]
RewriteCond %{HTTP_HOST} !^m.whatever.com
RewriteRule ^(.*)$ http://m.whatever.com/ [L,R=302]
from this source:
Source