去除虚拟路径中的多余index.php

来源:互联网 发布:长春盘古网络招聘 编辑:程序博客网 时间:2024/06/05 11:14
在使用虚拟路径的时候,会发现路径形如http://localhost/vp/index.php/edit/id/1的url,但是如果不使用虚拟路径则是http://localhost/index/edit/id/1。
经过调研,发现是.htaccess中的路径重写规则有误。
正确的规则应该加上虚拟路径,如下:
  1. RewriteRule .* /vp/index.php


原创粉丝点击