标签: regex nginx url-rewriting url-redirection nginx-location
我坚持为下面写一个简单的nginx重写/重定向规则。
例如:https://example.com/news/abcxyz-pqr
https://example.com/news/abcxyz-pqr
应重定向到
https://example.com/news-and-articles/abcxyz-pqr
谢谢!
答案 0 :(得分:2)
以下规则对我很有帮助。
rewrite ^/news/(.*)$ /news-and-articles/$1 permanent;