尝试重定向如下网址:
http://example.com/vehicles/cars/author/xyz
http://example.com/plane/author/xyz
对这些:
http://example.com/profile/xyz
我尝试了这个 Nginx Rewrite,但它没有选择匹配并重定向:
rewrite ^/author/(.*)$ http://example.com/profile/$1 last;
我在这里做错了什么?
^/author/(*)$
表示它以 开头/author/
。您要重写的 URL 不以/author/
. 你需要这样的东西:但我认为这更好,可能更健壮: