相关文章
nginx配置pc端和移动端h5自动跳转
PC端域名www.域名或者域名直接访问,h5端配置m.域名访问pc端配置
server {listen 80;server_name a.com www.a.com;index index.html index.htm index.php;root /data/www/;set $mhostname $host;if ($host ~ ^(www|m)\.(.*)$){set $mhostname $2;}if ($ht…
建站知识
2024/11/21 13:33:59
nginx 配置pc端和移动端自动跳转
全部配置文件 #user nobody;
worker_processes 1;#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;#pid logs/nginx.pid;events {worker_connections 1024;
}http {include mime.types;default_type appl…
建站知识
2024/11/24 16:44:44
js判断PC端与移动端跳转
使用这方法既简单,又实用,不需要引入jQuery库,把以下代码加入到里即可。
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {window.location “mobile.html”; //可以换成http地址
}va…
建站知识
2024/11/25 20:25:11
nginx 移动端和PC端自动跳转
转自:https://www.jianshu.com/p/ea482004f32f
前提 一个官网,分别做了 PC 端和移动端,它们的信息如下所示:
平台域名描述PC 端www.one.comPC 端官网移动端m.one.com移动端官网
需求 在 PC 端访问 www.one.com 和 m.one.com 都…
建站知识
2024/11/24 0:21:07
pc与移动端互相跳转
1、移动端检测是否是PC端浏览器
<script data-fixed"true">!function(){if(/iphone|ios|android|ipod/i.test(navigator.userAgent.toLowerCase()) false){location.href PC地址;}}();
</script><!--ignore-->2、PC端检测是否是移动设备<scr…
建站知识
2024/11/21 7:24:23
移动端页面与PC页面之间的跳转
根据设备 navigator.userAgent 的不同进行判断
PC页面跳转到移动设备
//DEVICE_REDIRECT
(function(){var w = window, u = navigator.userAgent;//SMART_PHONEif(u.indexOf(iPhone
建站知识
2024/11/24 12:22:18
PHP判断pc和移动端跳转,JS判断是PC还是移动端浏览器,并根据不同的终端跳转到不同的网址...
JS判断是PC还是移动端浏览器,并根据不同的终端跳转到不同的网址 function browserRedirect() { var sUserAgent navigator.userAgent.toLowerCase(); var bIsIpad sUserAgent.match(/ipad/i) "ipad"; var bIsIphoneOs sUserAgent.match(/IPHONE os/i)…
建站知识
2024/11/25 20:37:20
html代码,通过识别pc端和移动端,跳转到不同的页面
<!DOCTYPE html>
<html>
<head lang"en"> <meta charset"UTF-8"> <title></title> <!--引入需要的插件放置自己的样式等--></head>
<body>
//主体部分,写入自己需要的内容 </bod…
建站知识
2024/11/21 23:28:06