在 nginx 中重定向 url 时遇到问题
Posted
技术标签:
【中文标题】在 nginx 中重定向 url 时遇到问题【英文标题】:Trouble redirecting urls in nginx 【发布时间】:2021-02-14 21:12:14 【问题描述】:我正在尝试设置一个 nginx 重定向,domain.com/story/urlname
将重定向到 domain.com/clientstories/urlname
。本质上需要从一个子路径重定向到另一个。我尝试了以下操作,但一直将我重定向到 domain.com/clientstories(.*
我在这里错过了什么?
location /story/(.*)
return 301 $scheme://$server_name/clientstories$1;
【问题讨论】:
【参考方案1】:您的 location
块缺少正则表达式运算符和 URI 开头的锚点。 return
语句缺少 clientstories
之后的分隔符,因为它不是捕获的一部分。
使用正则表达式location
的示例:
location ^/story(/.*)$
return 301 /clientstories$1$is_args$args;
使用前缀location
的示例:
location /story/
rewrite ^/story(/.*)$ /clientstories$1 permanent;
正则表达式位置是按顺序计算的,并且优先于前缀位置,因此配置中其他位置的存在可能很重要。详情请见this document。
【讨论】:
以上是关于在 nginx 中重定向 url 时遇到问题的主要内容,如果未能解决你的问题,请参考以下文章
javaweb中重定向和请求转发(response.sendRedirect()和request.getRequestDispatcher(rul).forward(request,response)