从博客重定向到我的移动网站

redirect from blogger to my mobile site

本文关键字:移动 移动网 网站 我的 重定向      更新时间:2023-09-26

如何从博主重定向到我的移动网站?

我尝试在其中输入一些代码,但它不起作用。

http://www.designyourway.net/blog/resources/detecting-and-redirecting-mobile-users/

我认为

您想使用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>标签之间,现在每当有人使用移动设备访问您的博客时,他们都会重定向到您的移动网站