http://www.appleforum.com/application/56585-iphone-ipod-touch에서만-열리는-웹-만들기.html

원리는 간단했다. javascript 로 UserAgent 에 따라 다른 페이지로 이동하게 하는 거다.

if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)))
{
location.href='http://www.iphonefriendlyurl.com';
}
Latest update: 2010. 4. 5. 13:49