ไม่ต้องใช้ .htaccess ก็ได้ครับ ใช้ Class ของ Mobile Detect ช่วยได้ ถ้าเช็คว่าไม่ใช่คอมพิวเตอร์ก็ให้ redirect ไปตามที่ต้องการครับ มี Demo ให้ดูครับ
ประมาณนี้ครับ Code (PHP)
require_once 'Mobile_Detect.php';
$detect = new Mobile_Detect;
// Any mobile device (phones or tablets).
if ( $detect->isMobile() ) {
header("location:.......................");
}