-
配置Nginx.conf在你的虚拟主机下添加
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php/$1 last;
}
}
复制代码
如果你的项目入口文件在一个子目录内则location /目录/ {
if (!-e $request_filename){
rewrite ^/目录/(.*)$ /目录/index.php/$1 last;
}
}
转载请附带本文地址:http://www.hake.cc/a/kaifajiaocheng/thinkphp/2012/0811/73639.html
nginx去掉index.php
最新推荐文章于 2023-10-04 09:14:18 发布