2

我所做的 htaccess 没有按应有的方式运行,为什么?

有我的 htaccess

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
#RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
php_value memory_limit "64M" 
</IfModule> 

和索引页面配置

$config['index_page'] = '';

但是仍然没有找到404页面

http://hostname/blog <=== 404 page not found
http://hostname/index.php/blog <=== normal page show up
4

3 回答 3

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

should be:

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

See http://ellislab.com/codeigniter/user-guide/general/urls.html and the section titled 'Removing the index.php file' You need to use the same RewriteRule, the RewriteConds you have are fine though.

于 2012-12-01T07:04:49.983 回答
0
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]

这是Codeigniter 删除 index.php 文件的用户指南中编写的标准内容,您可以在其中添加其他规则。

于 2012-12-01T14:41:36.957 回答
0

将 .htaccess 文件与 index.php 文件一起放在应用程序根目录中。(检查 htaccess 扩展是否正确,Bz htaccess.txt 对我不起作用。)

并将以下规则添加到 .htaccess 文件中,

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]  

然后在您的 application/config/config.php 文件中找到以下行

$config['index_page'] = 'index.php';

将变量设置为空,如下所示。

$config['index_page'] = '';

就是这样,它对我有用。

如果它不起作用,请尝试用这些参数('AUTO'、'PATH_INFO'、'QUERY_STRING'、'REQUEST_URI'和'ORIG_PATH_INFO')一一替换以下变量

$config['uri_protocol'] = 'AUTO';
于 2012-12-01T11:48:03.353 回答