现在的位置: 首页PHP, WEB服务器>正文
thinkphp在nginx去掉index.php
发表于244 天前 PHP, WEB服务器 暂无评论
配置Nginx.conf在你的虚拟主机下添加

location / {
     if (!-e $request_filename){
          rewrite ^/(.*)$ /index.php/$1 last;
     }
}
复制代码
如果你的项目入口文件在一个子目录内则

location /目录/ {
     if (!-e $request_filename){
          rewrite ^/目录/(.*)$ /目录/index.php/$1 last;
     }
}

给我留言

留言无头像?


×
腾讯微博