Created
February 11, 2013 07:12
-
-
Save mamor/4753075 to your computer and use it in GitHub Desktop.
.htaccessでスマホをリダイレクトさせるメモ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RewriteEngine On | |
RewriteBase /xxx | |
RewriteCond %{HTTP_USER_AGENT} iPod [OR] | |
RewriteCond %{HTTP_USER_AGENT} iPhone [OR] | |
RewriteCond %{HTTP_USER_AGENT} iPad [OR] | |
RewriteCond %{HTTP_USER_AGENT} Android | |
RewriteRule ^(.*)/yyy/(.*)$ $1/zzz/$2 [R] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment