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

nginx去掉url中的index.php

时间:2014-07-13 18:52:33      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:style   使用   文件   io   line   re   

使用情境:我想输入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,布布扣,bubuko.com

nginx去掉url中的index.php

标签:style   使用   文件   io   line   re   

原文地址:http://blog.csdn.net/moqiang02/article/details/37738495

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