用于URL重定向的Nginx规则

时间:2016-07-29 06:05:57

标签: regex nginx url-rewriting url-redirection nginx-location

我坚持为下面写一个简单的nginx重写/重定向规则。

例如:https://example.com/news/abcxyz-pqr

的任何请求

应重定向到

https://example.com/news-and-articles/abcxyz-pqr

谢谢!

1 个答案:

答案 0 :(得分:2)

以下规则对我很有帮助。

rewrite ^/news/(.*)$ /news-and-articles/$1 permanent;