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

PHP ci 域名去掉index.php

时间:2018-12-14 12:56:38      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:$1   com   方法   index   不用   目录   中间   必须   cat   

我在本地配置虚拟主机,访问api目录是:api.com/index.php/test/test。这个目录也可以这么访问:127.0.0.1/api/index.php/test/test

可以配置如下:

1,增加.htaccess到根目录,.htaccess内容如下:

RewriteEngine on

RewriteCond $1 !^(index\.php|images|robots\.txt)

RewriteRule ^(.*)$ /index.php/$1 [L]

2,修改application/config/config.php文件:

$config[‘index_page‘] = ‘index.php‘;修改为:

$config[‘index_page‘] = ‘‘;

然后本地可以直接通过api.com/test/test访问,但是如果用127.0.0.1/api/index.php/test/test 访问的话,中间的index.php必须加上,

有方法可以不用加吗?(最好是不要修改环境,而通过配置代码)

PHP ci 域名去掉index.php

标签:$1   com   方法   index   不用   目录   中间   必须   cat   

原文地址:https://www.cnblogs.com/ayanboke/p/10118223.html

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