欧美一级淫片免费视频黄,欧美黄色试片,黄网在线免费观看,国产区一区二,九久久久,九九在线视频,日韩视频1区

龍巖易富通網(wǎng)絡(luò)科技有限公司

龍巖小程序開發(fā),龍巖分銷系統(tǒng)

thinkphp在nginx去掉index.php

2015.09.10 | 290閱讀 | 0條評論 | php

項目配置文件config.php

return array(

"URL_MODEL"=>2,    //關(guān)于URL更多說明請參考Tinkphp/Common/convention.php

);

復(fù)制代碼

配置Nginx.conf


在你的虛擬主機下添加


location / {

                if (!-e $request_filename){

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

                }

}


如果你的項目入口文件在一個子目錄內(nèi)則


location /目錄/ {

                if (!-e $request_filename){

                               rewrite ^/目錄/(.*)$ /目錄/index.php/$1 last;

                }

}


贊 (

發(fā)表評論