如何在NGINX中重定向一个网址
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在NGINX中重定向一个网址相关的知识,希望对你有一定的参考价值。
参考技术A 通过rewrite可以重定向一个网址例如:
rewrite ^/pathname/filename.html$ /index.html;
可以将/pathname/filename.html重定向到index.html
采用的是302重定向
在 nginx 中重定向 url 时遇到问题
【中文标题】在 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中重定向一个网址的主要内容,如果未能解决你的问题,请参考以下文章