我希望 ex.com/abc
能自动在末尾加上 ex.com/abc/
, /abc/
有斜杠的会代理到后端
我用的是 openresty, 理论上和 nginx 没什么差别
# 一
location / {
...
proxy_pass ex2.com;
}
# 二
location /abc {
rewrite ^/(abc)$ $1/ permanent;
}
# 三
location /abc/ {
...
proxy_pass ex2.com;
}
现在问题是, 一个 nginx 成功, 另一个 nginx 失败, 配置除了域名都是一样的, 搞了一晚上了
有大佬有遇到过吗? 或者给个解题思路, 或者有没有其它方案, 先放过了
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.