gpt4 book ai didi

redirect - nginx重写文件夹的重定向

转载 作者:行者123 更新时间:2023-12-03 22:52:16 25 4
gpt4 key购买 nike

所有...

我正在尝试在Nginx中做一些事情来重定向文件中的所有调用

/images/


成为:

/assets/images/


有人可以帮我制定重写规则吗?赋予301永久移动状态?

最佳答案

这是使用较新版本的Nginx的首选方法:

location ~ ^/images/(.*) {
return 301 /assets/images/$1;
}


有关更多信息,请参见 https://www.nginx.com/blog/creating-nginx-rewrite-rules/

关于redirect - nginx重写文件夹的重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18305189/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com