如果我创建了两个版本的网站,一个正常,一个在服务器上名为“mobile”的文件夹中,那么我该如何监听移动设备并将用户定向到移动文件夹?
答案 0 :(得分:0)
您的目标网页需要detect并重定向。使用javascript可以轻松完成:
// note this regex is probably **not** the
// best one to use for mobile user agent detection
if(navigator.userAgent.match(/ios|android|windows phone/)) {
window.location = 'http://mysite.com/mobile';
}
如果您使用的是服务器端技术,那么您可以在那里进行重定向,因为它是首选方法,因为大多数移动设备都可以禁用javascript。有关如何使用apache执行此操作的信息,请参阅answer here。