当前位置:首页 > 服务器技术 > nginx

ThinkPHP33Nginxpathinfo&URL重写

 server {
    listen80;
    server_name 192.168.33.10 dev.me;
    root /var/www/html;
    indexindex.php index.html;

    client_max_body_size 25M;

    error_log /var/log/nginx/error.log;
    access_log  /var/log/nginx/access.log;

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

    location ~ [^/].php(/|$) {
      fastcgi_split_path_info ^(.+?.php)(/.*)$;
      fastcgi_param  PATH_INFO $fastcgi_path_info;
      fastcgi_pass 127.0.0.1:9000;
      fastcgi_index index.php;
      include fastcgi.conf;
  }
}
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('
  • ').text(i)); }; $numbering.fadeIn(1700); }); });

    以上就介绍了 ThinkPHP33 Nginx pathinfo & URL重写,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。


    【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!