如何从博主重定向到我的移动网站?
我已经尝试将一些代码放入其中并且它不起作用。
http://www.designyourway.net/blog/resources/detecting-and-redirecting-mobile-users/
答案 0 :(得分:0)
我认为您希望使用Javascript
添加:
<script>
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
window.location.href="http://My-Mobile-Site.com";
}
</script>
在您的<head>
代码之间,现在只要有人通过移动设备访问您的博客,他们就会重定向到您的移动网站