我有一个使用以下格式的网址的应用程序:
http://www.example.com/something/handle/uniquecode
此网址已更改为
http://www.example.com/s/h/uniquecode
我希望允许使用旧网址的用户访问系统。如何在nginx中编写此重定向?
PS:目前,如果有人试图访问http://www.example.com/something/handle/uniquecode,则会收到404页
提前致谢
答案 0 :(得分:0)
仅供将来参考,可以通过添加此nginx配置文件轻松实现:
rewrite ^/something/handle/(.*) /s/h/$1 permanent;