您应该执行以下操作。
- 从 HTAccess 中删除上述内容。
在您网站的索引或默认页面中,您需要检查用户何时来自移动设备?
如果用户来自移动设备,则将他重定向到演示页面,该页面为用户提供重定向到 m.abc.com 或 abc.com 的选项
- 你也可以使用 javascript 确认来做同样的事情。
一个基于设备宽度的脚本示例...
<script type="text/javascript">
<!--
if (screen.width <= 699) {
document.location = "mobile.html";
}
//-->
</script>
另一个基于设备类型...
<script language=javascript>
<!--
if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
location.replace("http://url-to-send-them/iphone.html");
}
-->
</script>
基于我使用...
if ( (screen.width < 1024) && (screen.height < 768) ) {
window.location = 'http://mobile.site.com';
}
希望以上有帮助