龙岩易富通网络科技有限公司

龙岩小程序开发,龙岩分销系统

thinkphp在nginx去掉index.php

2015.09.10 | 308阅读 | 0条评论 | php

项目配置文件config.php

return array(

"URL_MODEL"=>2,    //关于URL更多说明请参考Tinkphp/Common/convention.php

);

复制代码

配置Nginx.conf


在你的虚拟主机下添加


location / {

                if (!-e $request_filename){

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

                }

}


如果你的项目入口文件在一个子目录内则


location /目录/ {

                if (!-e $request_filename){

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

                }

}


赞 (

发表评论