thinkphp5 tp5 与 nginx 搭配在根目录和子目录中如何设置伪静态

配置文件参考一下:

  location /public/ {
    if (!-e $request_filename){
        rewrite  ^/public/(.*)$  /public/index.php?s=/$1  last;
    }
    
    }
  location /public2/ {
    if (!-e $request_filename){
        rewrite  ^/public2/(.*)$  /public2/index.php?s=/$1  last;
    }
    
    }
   location / {
    if (!-e $request_filename){
        rewrite  ^/(.*)$  /index.php?s=/$1  last;
    }
    
    }

 

posted @ 2018-04-22 02:42  viof7852  阅读(679)  评论(0编辑  收藏  举报