nginx rewrite redirect for a folder

后端 未结 2 652
南笙
南笙 2021-02-05 10:53

all...

I am trying to do something in nginx to redirect all calls for files in

/images/

to become in:

/assets/images/
         


        
2条回答
  •  离开以前
    2021-02-05 10:59

    Here's the preferred way to do this with newer versions of Nginx:

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

    See https://www.nginx.com/blog/creating-nginx-rewrite-rules/ for more info.

提交回复
热议问题