3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CakePHP+.htaccess、スマホを/sp/以下に転送

Last updated at Posted at 2015-06-19
  • スマホを /sp/ 以下に external redirect で転送、/foo なら /sp/foo な具合に
  • 画像、CSSファイルや JSファイルはそのまま
  • 「PC版を表示」みたいなのにも対応(Cookie は別途制御必要)
<IfModule mod_rewrite.c>
    RewriteEngine On

    RewriteCond %{REQUEST_URI} !^/sp/
    RewriteCond %{REQUEST_URI} !(index\.php|\.bmp|\.jpe?g|\.gif|\.png|\.js|\.css)$
    RewriteCond %{HTTP_USER_AGENT} (iPod|iPhone|iPad|Android|Windows\ Phone)
    RewriteCond %{HTTP_COOKIE} !mode=pc
    RewriteRule ^(.*)$ /sp/$1 [R,L]

    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?