Ok the above code to insert on your index page is WRONG! Do NOT use it, it links to a site that's not yours. So sorry about that.
This is the right code:
Code:
<?php
/* sexgoesmobile.com MobileTargetingScript */
/* Mobile Geräte auf diese URL umleiten */
$mobile_url = "YOUR NON US MOBILE URL HERE";
/* Download mobile_detection.php:
* http://www.sexgoesmobile.com/webmaster/tools/redirect/manager/mobile_detection/
*/
include("mobile_detection.php");
/* Ab hier nichts mehr ändern */
if(detect_mobile_device())
{
header("Location: $mobile_url");
exit();
}
/* sexgoesmobile.com end */
?>