项目配置文件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;
}
}
发表评论