1. 程式人生 > >phpstudy nginx環境下,tp5.1重寫規則

phpstudy nginx環境下,tp5.1重寫規則

直接貼程式碼了。

server {
        listen       80;
        server_name  127.0.0.1;
        index  index.html index.htm index.php l.php;
        #charset koi8-r;


        #access_log  logs/host.access.log  main;
        root    "C:/sky/myphp_www/PHPTutorial/WWW/tp_push/public";
       # location / {
           # index  index.html index.htm index.php l.php;
          # autoindex  off;
       # }
        #URL重寫
       location / { 
          if (!-e $request_filename) {
   rewrite  ^(.*)$  /index.php?s=/$1  last;
          }

       }

還有一種: