Javascript
下記スクリプトを「head」タグ内に記述いただくことで、ユーザーエージェントがスマフォだった場合に「location.href」で指定しているURLにリダイレクトが可能です。
<script type="text/javascript">
if ((navigator.userAgent.indexOf('iPhone') > 0 && navigator.userAgent.indexOf('iPad') == -1) || navigator.userAgent.indexOf('iPod') > 0 || navigator.userAgent.indexOf('Android') > 0) {
location.href = '/sp/';
}
</script>