1. 程式人生 > >nginx 開啟rewrite thinkcmf

nginx 開啟rewrite thinkcmf

server{
... 省略

location / {
        index  index.php index.html index.htm;
         #如果請求既不是一個檔案,也不是一個目錄,則執行一下重寫規則
         if (!-e $request_filename)
         {
            #地址作為將引數rewrite到index.php上。
            rewrite ^/(.*)$ /index.php?s=$1;
            #若是子目錄則使用下面這句,將subdir改成目錄名稱即可。
            #rewrite ^/subdir/(.*)$ /subdir/index.php?s=$1;
         }
    }
    
 ... 省略

}