apache与nginx在移动终端访问是的rewrite配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache与nginx在移动终端访问是的rewrite配置相关的知识,希望对你有一定的参考价值。
如题:目前想实现如下效果,根目录下的index.html文件,在使用移动终端访问时,用rewrite重定向到/mobile/index.html。求解rewriterule改如何配置,之前试了试,貌似所有目录的index.html都会重定向,只需要让根目录的index.html重定向即可。麻烦各位大神指点一下,apache和nginx都需要。
参考技术A 这不需要用到重定向,这只在index.html内加入判断的代码即可。看下如下代码,或者再找找网上的代码例子。方向对了,调试就快了。<script type="text/javascript">
function browserRedirect()
var sUserAgent = navigator.userAgent.toLowerCase();
var bIsIpad = sUserAgent.match(/ipad/i) == "ipad";
var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os";
var bIsMidp = sUserAgent.match(/midp/i) == "midp";
var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
var bIsUc = sUserAgent.match(/ucweb/i) == "ucweb";
var bIsandroid = sUserAgent.match(/android/i) == "android";
var bIsCE = sUserAgent.match(/windows ce/i) == "windows ce";
var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile";
if (!(bIsIpad || bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM) )
else
window.location.href="/mobile/";
browserRedirect();
</script>追问
不让改页面代码……,只能通过apache和nginx的配置来实现…………
参考技术B apache:RewriteRule ^/$ /mobile/ [R=301,NC]
nginx:
rewrite ^/$ /mobile/ break;本回答被提问者采纳
以上是关于apache与nginx在移动终端访问是的rewrite配置的主要内容,如果未能解决你的问题,请参考以下文章