Home >Backend Development >PHP Tutorial >ThinkPHP33 Nginx pathinfo & URL rewriting

ThinkPHP33 Nginx pathinfo & URL rewriting

WBOY
WBOYOriginal
2016-07-28 08:26:26841browse

<code> server {
    <span>listen</span><span>80</span>;
    server_name <span>192.168</span>.<span>33.10</span> dev.me;
    root /var/www/html;
    <span>index</span><span>index</span>.php <span>index</span>.html;

    client_max_body_size <span>25</span>M;

    error_log /var/<span>log</span>/nginx/error.<span>log</span>;
    access_log  /var/<span>log</span>/nginx/access.<span>log</span>;

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

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

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

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:angularjs refresh 404Next article:angularjs refresh 404