如何在NGINX中重定向一个网址

2024-12-05 02:17:21
推荐回答(1个)
回答1:

通过rewrite可以重定向一个网址
例如:
rewrite ^/pathname/filename.html$ /index.html;
可以将/pathname/filename.html重定向到index.html
采用的是302重定向