Redirect Users Who Have Mobile Devices

CashDummy

Regular Member
Joined
Oct 3, 2007
Messages
233
Reaction score
106
Is there a code I can use to send people who go to my site using a mobile device to a different link?
 
you can use this
Code:
RewriteEngine On
# Check for mime types commonly accepted by mobile devices
RewriteCond %{HTTP_ACCEPT} "text\/vnd\.wap\.wml|application\/vnd\.wap\.xhtml\+xml" [NC]
RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^ http://m.domain.com%{REQUEST_URI} [R,L]
 
I have used "mobile-detect.js", seems to work fine, You can find it on github.
 
Back
Top