Skip to content

Instantly share code, notes, and snippets.

@ytkhs
Created June 24, 2013 08:02
Show Gist options
  • Save ytkhs/5848447 to your computer and use it in GitHub Desktop.
Save ytkhs/5848447 to your computer and use it in GitHub Desktop.
UserAgentを見てスマートフォン版⇔PC版をリダイレクトする場合とか
<?php
header('HTTP/1.1 301 Moved Permanently');
header('Vary: User-Agent');
header(sprintf('Location: %s', $url));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment