Heim >Backend-Entwicklung >PHP-Tutorial >ThinkPHP33 Nginx pathinfo & URL重写

ThinkPHP33 Nginx pathinfo & URL重写

WBOY
WBOYOriginal
2016-07-28 08:26:26850Durchsuche

<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教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:angularjs 刷新 404Nächster Artikel:redis的安装及php的redis使用