时间:2023-02-09 11:15:01 | 来源:建站知识
时间:2023-02-09 11:15:01 来源:建站知识
location /image { root /folderName; }
2 通过nginx rewrite内部跳转实现访问重定向location /image { rewrite ^/image/(.*)$ /folderName/image/$1 last; }
3 nginx设置别名alias映射实现location /image { alias /folderName/image; #这里写绝对路径 }
4 通过nginx的permanent 301绝对跳转实现location /image { rewrite ^/image/(.*)$ http://dashidan.com/folderName/image/$1; }
5 通过判断uri实现页面跳转if ( $request_uri ~* ^(/image)){ rewrite ^/image/(.*)$ /folderName/image/$1 last; }
转载请保留本文链接.关键词:路径,目录