2

无论如何,我的代码点火器安装中的索引页面(又名 homepage.php)工作正常。

问题在于使用子目录来存储其他页面,目前它的设置如下: 图像1

加载主页就像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,目前看起来像: img2

它把我送到http://localhost/VAw_CI/pages/clientlogin

显示: 图像3

我的控制器设置如下: img4

这里给出了什么?当我访问时http://localhost/VAw_CI,它有效views->pages->homepage.php地正确加载了视图,但似乎任何其他视图都不起作用我是否在我的情况下错过了索引(homepage.php)以外的页面的某些路径设置?

4

2 回答 2

5

请在项目文件夹中创建 .htaccess 文件并写入:

<IfModule mod_rewrite.c>
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# Rewrite all other URLs to index.php/URL
RewriteRule ^(.*)$ index.php?url=$1 [PT,L] 

</IfModule>
<IfModule !mod_rewrite.c>
 ErrorDocument 404 index.php
</IfModule>

您不需要在配置文件的 base_url 中定义:

$config['base_url'] = ''; // blank it.
于 2012-10-31T08:55:56.657 回答
0

弄清楚我做错了什么:

我需要访问:http://localhost/VAw_CI/**index.php**/pages/aboutus这真的很奇怪,因为我的默认 CI 页面设置为 $config['index_page'] = 'homepage';

希望这可以帮助某人,有时:)

于 2012-10-30T20:32:31.443 回答