无论如何,我的代码点火器安装中的索引页面(又名 homepage.php)工作正常。
问题在于使用子目录来存储其他页面,目前它的设置如下:
加载主页就像http://localhost/VAw_CI/
工作正常(加载 homepage.php),这是在 routes.php 中设置的:
$route['default_controller'] = "pages/homepage";
在 config.php 中,我设置了:
$config['base_url'] = 'http://localhost/VAw_CI';
/*
|--------------------------------------------------------------------------
| Index File
|--------------------------------------------------------------------------
|
| Typically this will be your index.php file, unless you've renamed it to
| something else. If you are using mod_rewrite to remove the page set this
| variable so that it is blank.
|
*/
$config['index_page'] = '';
我$config['index_page'] = '';
在上面指定,因为我修改了位于以下位置的 .htaccess htdocs
:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .*homepage/$0 [PT,L]
但是,如果我尝试登录 homepage.php,目前看起来像:
它把我送到http://localhost/VAw_CI/pages/clientlogin
显示:
我的控制器设置如下:
这里给出了什么?当我访问时http://localhost/VAw_CI
,它有效views->pages->homepage.php
地正确加载了视图,但似乎任何其他视图都不起作用我是否在我的情况下错过了索引(homepage.php)以外的页面的某些路径设置?