location 将跟目录下某个文件夹指向2级目录
例如:
/caffespressos/指向/web01/caffe/
[root@web01 default]# tree web01/ web01/ └── caffe └── index.html 1 directory, 1 file [root@web01 default]# cat web01/caffe/index.html rewrite ^/([0-9a-z]+)espressos/(.*)$ /web01/$1/$2 last; [root@web01 default]# cat /app/server/nginx/conf/rewrite/default.conf #rewrite ^/index\.html /index.php last; #if (!-e $request_filename) rewrite ^/(.*)$ index.php last; #if (!-e $request_filename) {rewrite ^/(.*)$ /index.php last;} #if (!-e $request_filename) {return 404;} #if ($http_user_agent ~ Firefox) {rewrite ^(.*)?$ /nginx-Firefox/$1 break;} #if ($http_user_agent ~ MSIE) {rewrite ^(.*)$ /nginx-MSIE/$1 break;} #rewrite ^/(\d+)/(.+)/ /$2?id=$1 last; #location ~ ^/(cron|templates)/ {deny all;break;} #location ~ ^/data {deny all;} #location ^~ /html/m.js {access_log off;root /app/www;expires 5;break;} #rewrite ^/ck-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /ck/$1/$2/$3.html last; rewrite ^/([0-9a-z]+)espressos/(.*)$ /web01/$1/$2 last;
[root@web01 default]# /app/server/nginx/sbin/nginx -s reload [root@web01 default]# curl http://192.168.1.24/caffeespressos/index.html rewrite ^/([0-9a-z]+)espressos/(.*)$ /web01/$1/$2 last;
联系方式QQ:326528263 EMAIL:clnking@163.com 网名:bass 分享技术 突破难点 创新思维