Skip to content

Instantly share code, notes, and snippets.

@avandrevitor
Created December 6, 2016 15:48
Show Gist options
  • Save avandrevitor/76902d043ed653d3765b491521cfc076 to your computer and use it in GitHub Desktop.
Save avandrevitor/76902d043ed653d3765b491521cfc076 to your computer and use it in GitHub Desktop.
Apache Mobile Redirect
# from http://snipplr.com/view/47652/simple-htaccess-mobile-redirect/
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/mobiledirectoryhere/.*$
RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
RewriteRule ^(.*)$ /mobiledirectoryhere/ [L,R=302]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment