我目前正在使用 CodeIgniter 开发一个网站,最近我偶然发现了一个路由和 .htaccess 问题。
基本上,我的简单网站的结构(为了简单起见,我们将我的项目称为“CIExample”)如下:
-首页 -
关于我们-我们
的服务
-新闻
资讯 -联系我们
我使用页面控制器实现的。该控制器有 5 个函数调用各自的页面视图,即:
Home(),它调用视图'Home'
About(),它调用视图'About Us'等等。
以前,要访问“主页”,我需要http://localhost/CIExample/index.php/page/home
在 url 窗口中输入内容,但在设置以下路由后,我能够删除“页面”(类名)部分:
$route['default_controller'] = 'page/home';
$route['home'] = 'page/home';
$route['about'] = 'page/about';
$route['service'] = 'page/service';
$route['news'] = 'page/news';
$route['contact'] = 'page/contact';
但是,当我尝试删除“index.php”时,棘手的部分就来了。我希望能够通过键入来访问主页http://localhost/CIExample/home
。
所以我在CI论坛/教程/堆栈溢出上做了很多搜索,发现了一些.htaccess文件的代码:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
或http://ellislab.com/forums/viewthread/197675/#929904
我尝试了两种代码,但都没有工作..
http://localhost/CIExample/home
会引导我到 404 not found 页面,但http://localhost/CIExample/index.php/home
可以正常工作。
我想知道出了什么问题?是我的 routes.php 或 .htaccess 还是两者兼而有之?谢谢。
注意:我还更改了我的 'config/config.php' 文件 ->$config['index_page'] = '';
编辑:
终于成功了!调整 config 文件夹中的 config.php 文件并设置以下内容$config['uri_protocol'] = 'PATH_INFO';
(来自“AUTO”)。
可用值:
| 'AUTO' Default - auto detects
| 'PATH_INFO' Uses the PATH_INFO
| 'QUERY_STRING' Uses the QUERY_STRING
| 'REQUEST_URI' Uses the REQUEST_URI
| 'ORIG_PATH_INFO' Uses the ORIG_PATH_INFO
不知道有什么不同,但根据http://www.jotorres.com/2011/12/removing-index-php-from-url-in-codeigniter/中的评论之一,相同的代码可能/可能不起作用生产服务器。
任何人都可以解释原因吗?