同一个网址,比如说访问。www.hnts001.com,pc端打开显示index.html.移动端打开显示wap.html.。这个是我项目路径。具体需要怎么实现呢?我需要具体代码。ps这两个都是静态页面。前端可以实现的话因可能前端。要是后端做得话 我不是很了解
1 回答
jeck猫
TA贡献1909条经验 获得超7个赞
index页面加这段代码
<script>
if( navigator.userAgent.match(/Android/i)
|| navigator.userAgent.match(/webOS/i)
|| navigator.userAgent.match(/iPhone/i)
|| navigator.userAgent.match(/iPad/i)
|| navigator.userAgent.match(/iPod/i)
|| navigator.userAgent.match(/BlackBerry/i)
|| navigator.userAgent.match(/Windows Phone/i)
){
window.location.href="wap.html";
}
</script>
添加回答
举报
0/150
提交
取消