1. 程式人生 > >finecms ngix 偽靜態設定

finecms ngix 偽靜態設定

finecms ngix 偽靜態設定

location / {     

    if (!-e $request_filename) {

        rewrite ^/index.php(.*)$ /index.php?s=$1 last;

        rewrite ^(.*)$ /index.php?s=$1 last;

        break;

    }            

}