码迷,mamicode.com
首页 > Web开发 > 详细

nginx去掉url中的index.php

时间:2019-02-16 20:40:06      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:配置nginx   index   文件   conf   filename   index.php   入口   file   ast   

使用情境:我想输入www.abc.com/a/1后,实际上是跳转到www.abc.com/index.php/a/1


配置Nginx.conf在你的虚拟主机下添加:
location / {
     if (!-e $request_filename){
          rewrite ^/(.*)$ /index.php/$1 last;
     }
}


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

nginx去掉url中的index.php

标签:配置nginx   index   文件   conf   filename   index.php   入口   file   ast   

原文地址:https://www.cnblogs.com/phpredboy/p/10389107.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!