4

我正在使用 Ubuntu 12.10。而且我无法从我的 codeigniter 站点 URL 中删除“index.php”。

我的 .htaccess 文件看起来像这样,我的代码在 hmvcExample 文件夹中。

*

RewriteEngine On
RewriteBase /hmvcExample/

### Canonicalize codeigniter URLs

# If your default controller is something other than
# "welcome" you should probably change this
RewriteRule ^(welcome(/index)?|index(\.php)?)/?$ / [L,R=301]
RewriteRule ^(.*)/index/?$ $1 [L,R=301]

# Removes trailing slashes (prevents SEO duplicate content issues)
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/$ $1 [L,R=301]

# Enforce www
# If you have subdomains, you can add them to 
# the list using the "|" (OR) regex operator
RewriteCond %{HTTP_HOST} !^(www|subdomain) [NC]
RewriteRule ^(.*)$ http://www.domain.tld/$1 [L,R=301]

# Enforce NO www
#RewriteCond %{HTTP_HOST} ^www [NC]
#RewriteRule ^(.*)$ http://domain.tld/$1 [L,R=301]

###

# Removes access to the system folder by users.
# Additionally this will allow you to create a System.php controller,
# previously this would not have been possible.
# 'system' can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php/$1 [L]

# Checks to see if the user is attempting to access a valid file,
# such as an image or css document, if this isn't true it sends the
# request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]   

# Without mod_rewrite, route 404's to the front controller
ErrorDocument 404 /index.php   

*

我也从 config.php 中删除了“index.php”。但是当我尝试在没有“index.php”的情况下加载网站时仍然出现以下错误

未找到 在此服务器上未找到请求的 URL /hmvcExample/signup。Apache/2.2.22 (Ubuntu) 服务器在 localhost 端口 80

请帮忙。谢谢。

4

2 回答 2

3

这似乎是应该一直在寻找的问题之一 -如何在 codeigniter 的路径中删除“index.php”

还有另一个config需要编辑:

$config['uri_protocol'] = 'AUTO';

将上面写的行更改为以下内容:

$config['uri_protocol'] = 'REQUEST_URI';

如果你已经完成了所有这些,可能还剩下一个问题——enable mod_rewrite

于 2013-04-15T06:20:58.153 回答
1

确保您已AllowOverride All在 /etc/httpd/conf/httpd.conf (centos apache 2.2) 中设置

配置:

$config['index_page'] = '';
于 2014-03-17T13:35:13.817 回答