Nginx 怎么配置根据 User-Agent 跳转到不通地址,比如,跳转到移动端的网站

2017-04-05 11:36:31 +08:00
 assad

Nginx 怎么配置根据 User-Agent 跳转到不通地址
比如,跳转到移动端的网站

我怎么配都跳转不过去

5035 次点击
所在节点    程序员
14 条回复
willakira
2017-04-05 12:54:36 +08:00
强烈不推荐这么做,如果是用于生产环境的话
Nginx 、 apache 、 tomcat 这些 server 的配置一般不是由开发来管理的,因此
- 每次更新的时候都需要运维参与
- 出现问题的时候回滚非常麻烦
- 性能倒是其次, debug 会非常复杂

一般都会在 container 跑个小程序做这个,好处有
- 自己更新
- 出问题了自己回滚
- 容易 debug

把难以监控,不透明的东西做的简单,复杂的东西做的透明,就是这样
sundong
2017-04-05 13:39:08 +08:00
## rewrite spider
if ($http_user_agent ~* (baiduspider|googlebot|Googlebot|soso|bing|sogou|yahoo|sohu-search|yodao|YoudaoBot|robozilla|msnbot)) {
rewrite ^/(.*)$ https://www.baidu.com permanent;
}
luojiyin87
2017-04-05 14:27:05 +08:00
chuhemiao
2017-04-05 14:32:22 +08:00
直接上代码不好吗,干吗要 nginx 配置, php 扩展有手机类型,直接判断了,然走那就走那
SourceMan
2017-04-05 14:33:13 +08:00
前端、后端做,都轮不到运维做。。。
prasanta
2017-04-05 14:37:12 +08:00
现在网站直接响应式了
Cabana
2017-04-05 18:36:29 +08:00
咋不做响应式呢
Showfom
2017-04-05 19:05:12 +08:00
@prasanta
@Cabana 可能楼主觉得响应式浪费流量

我们也不建议在 nginx 端做这个,后端程序判断才是最好的
ragnaroks
2017-04-05 19:56:12 +08:00
更多的可能是上面要求 1 天内做完吧.
改 nginx 配置可能是最快的了.

location /{
set $mob 'y';
if ($http_user_agent ~* "(Android|iPhone|Windows Phone)"){ set $mob "${mob}e"; }
if ($host != 'm.exp.com'){ set $mob "${mob}s"; }
if ($mob = "yes"){ rewrite ^/$ http://m.exp.com/$1 last; }
include /mnt/clouddisk/sync/web/rewrite.conf; #rewrite end
}
ragnaroks
2017-04-05 19:58:19 +08:00
不过现在也更推荐用代码控制,
让用户访问 exp.com,判断后跳转到 pc.exp.com / m.exp.com
mingyun
2017-04-05 22:32:18 +08:00
@luojiyin87 nice 支持这么多语言
ryd994
2017-04-06 07:56:48 +08:00
怎么楼上都是用 if 和 rewrite 的呢………
用 map 和 return 不好吗?
shew2356
2017-04-06 09:54:47 +08:00
<script type="text/javascript">
var isIosFlatform = function() {
return navigator.userAgent.match(/(iPad|iPhone)/) ? !0 : !1
};
var isAndroidFlatform = function() {
return navigator.userAgent.match(/(Android)/) ? !0 : !1
};
var isMobile = function() {
return isIosFlatform() || isAndroidFlatform() ? !0 : !1
};
if (!isMobile()) {
window.location.href = "http://www.xxx.com/"
}
</script>
assad
2017-04-06 15:42:55 +08:00
最后不得已,使用了 lua

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/352602

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX