/ Published in: Apache
This rewrite covers most mobile devices (with few false positives). When a mobile device is detected it is redirected to /m/.
Expand |
Embed | Plain Text
RewriteCond %{REQUEST_URI} !^/m/.*$ RewriteCond %{HTTP_USER_AGENT} !^.*ipad.*$ [NC] RewriteCond %{HTTP_ACCEPT} "text\/vnd\.wap\.wml|application\/vnd\.wap\.xhtml\+xml" [NC,OR] RewriteCond %{HTTP_USER_AGENT} "sony|symbian|nokia|samsung|mobile|windows ce|epoc|opera mini|nitro|j2me|midp-|cldc-|netfront|mot|up\.browser|up\.link|audiovox" [NC,OR] RewriteCond %{HTTP_USER_AGENT} "blackberry|ericsson,|panasonic|philips|sanyo|sharp|sie-|portalmmm|blazer|avantgo|danger|palm|series60|palmsource|pocketpc" [NC,OR] RewriteCond %{HTTP_USER_AGENT} "smartphone|rover|ipaq|au-mic,|alcatel|ericy|vodafone\/|wap1\.|wap2\.|iPhone|android" [NC] RewriteCond %{REQUEST_URI} ^/$
Comments
Subscribe to comments
You need to login to post a comment.

I already have a non www to www redirect setup in my htaccess file and when I add your mobile code I still can't get the redirect to work. What have I done wrong?
The current redirect is:-
RewriteEngine on RewriteCond %{HTTP_HOST} ^mydomain.com$ RewriteRule ^/?$ "http\:\/\/www.mydomain.com" [R=301,L]
thanks in advance