我正在寻找一个代码/链接,如果在安装了该应用程序的移动设备上浏览,它将启动本机 IOS 应用程序,但如果不在移动设备上或应用程序(facebook、youtube 等)重定向回基于 Web 的 URL。 .) 未安装。我可以通过 fb://action/ 启动本机应用程序,但如果未安装 fb 应用程序,我无法弄清楚如何让它重定向回基于 Web 的页面。无论如何,我都不是程序员,但我已经阅读了几天并且学到了很多东西!对此的任何见解对我来说意义重大。
问问题
824 次
1 回答
1
你不会在那里绕过一些编程 - 你应该阅读 php,这是一种服务器端脚本语言,你可以用它做很多整洁的事情,例如找出浏览设备是否是移动的,并根据就像重定向一样,这就是您所需要的。
我曾经在网上找到过一些东西。我对其进行了调整,以使其适合您的需求。评论应该解释一切。
<?php
// Get the user agent
$user_agent = $_SERVER['HTTP_USER_AGENT'];
// Create an array of known mobile user agents
// Most mobile devices send a pretty standard string that can be covered by
// one of these. I believe I have found all the agents (as of the date above)
// that do not and have included them below. If you use this function, you
// should periodically check your list against the WURFL file, available at:
// http://wurfl.sourceforge.net/
$mobile_agents = Array(
"240x320", "acer", "acoon", "acs-", "abacho", "ahong", "airness", "alcatel", "amoi", "android", "anywhereyougo.com", "applewebkit/525", "applewebkit/532", "asus", "audio", "au-mic", "avantogo", "becker", "benq", "bilbo", "bird", "blackberry", "blazer", "bleu", "cdm-", "compal", "coolpad", "danger", "dbtel", "dopod", "elaine", "eric", "etouch", "fly " , "fly_", "fly-", "go.web", "goodaccess", "gradiente", "grundig", "haier", "hedy", "hitachi", "htc", "huawei", "hutchison", "inno", "ipad", "ipaq", "ipod", "jbrowser", "kddi", "kgt", "kwc", "lenovo", "lg ", "lg2", "lg3", "lg4", "lg5", "lg7", "lg8", "lg9", "lg-", "lge-", "lge9", "longcos", "maemo", "mercator", "meridian", "micromax", "midp", "mini", "mitsu", "mmm", "mmp", "mobi", "mot-", "moto", "nec-", "netfront", "newgen", "nexian", "nf-browser", "nintendo", "nitro", "nokia", "nook", "novarra", "obigo", "palm", "panasonic", "pantech", "philips", "phone", "pg-", "playstation", "pocket", "pt-", "qc-", "qtek", "rover", "sagem", "sama", "samu", "sanyo", "samsung", "sch-", "scooter", "sec-", "sendo", "sgh-", "sharp", "siemens", "sie-", "softbank", "sony", "spice", "sprint", "spv", "symbian", "tablet", "talkabout", "tcl-", "teleca", "telit", "tianyu", "tim-", "toshiba", "tsm", "up.browser", "utec", "utstar", "verykool", "virgin", "vk-", "voda", "voxtel", "vx", "wap", "wellco", "wig browser", "wii", "windows ce", "wireless", "xda", "xde", "zte"
);
// Pre-set $is_mobile to false.
$is_mobile = false;
// Cycle through the list in $mobile_agents to see if any of them
// appear in $user_agent.
foreach ($mobile_agents as $device) {
// Check each element in $mobile_agents to see if it appears in
// $user_agent. If it does, set $is_mobile to true.
if (stristr($user_agent, $device)) {
$is_mobile = true;
// break out of the foreach, we don't need to test
// any more once we get a true value.
break;
}
}
//check whether mobile is true, and if so, redirect to mobile page
if($is_mobile){
header("Location:http://www.mobilepage.com"); //replace domain
exit;
}else{
header("Location:http://www.notmobilepage.com"); //replace domain
exit;
}
?>
另请参阅this,它显示了不同的替代方案。
于 2012-11-17T22:36:41.373 回答