Skip to content

Instantly share code, notes, and snippets.

@itzmekhokan
Created March 26, 2019 15:48
Show Gist options
  • Save itzmekhokan/c9427f22348a640b9b9abc64d4aa1377 to your computer and use it in GitHub Desktop.
Save itzmekhokan/c9427f22348a640b9b9abc64d4aa1377 to your computer and use it in GitHub Desktop.
Redirect mobile users to mobile site
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]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment