Use this PHP snippet to redirect your Ipad and Iphone users to the apple compatible verison of the site.
apple
if(strstr($_SERVER['HTTP_USER_AGENT'],'iPhone') || strstr($_SERVER['HTTP_USER_AGENT'],'iPod')) {
header('Location: http://yoursite.com/iphone');
exit();
}