routes.php中的CodeIgniter路由链接

时间:2016-03-11 15:10:03

标签: php codeigniter codeigniter-hmvc

当我尝试从localhost/admin路由到localhost/index.php/admin

时,我很困惑

localhost/index.php/admin - 此链接正常运行。

我试过了:

$route['admin'] = 'index.php/admin';
$route['default_controller'] = 'front';
当我打开localhost/index.php/front时,

localhost工作正常,显示无效的首页。

我在这个例子中使用CodeIgniter HMVC。

我添加了额外的代码,因为它不允许我发布问题。

1 个答案:

答案 0 :(得分:2)

因为您需要删除网址中的index.php

转到 config / config.php

$config['base_url'] = 'http://localhost/projectname/';
$config['index_page'] = ''; # remove index.php on here

.htaccess 中 - 放置在应用程序文件夹之外。

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule .* index.php/$0 [PT,L]
RewriteRule ^(.*)$ index.php/$1 [L,QSA]

routes.php

删除此$route['admin'] = 'index.php/admin';