【问题标题】:CodeIgniter URL routing doesn't workCodeIgniter URL 路由不起作用
【发布时间】:2013-04-06 17:37:45
【问题描述】:

我使用的是 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

请帮忙。谢谢。

【问题讨论】:

  • 我看到一个结束的 </IfModule> 标记,但它前面没有匹配的 `。如果在您的实际 .htaccess 文件中是这种情况,您可能应该先修复它。
  • 我仍然在与 htaccess 作斗争,但从看起来你正在将基础重写为 hmvcExample 然后尝试导航到 hmvcExample/signup 你不应该尝试导航到 /signup 吗?
  • 在复制和粘贴 .htaccess 内容时出现了错误。文件顶部有一个打开的 标记。
  • 你试过在RewriteEngine On下面添加Options +FollowSymLinks吗?
  • 是的,我也尝试过 :-(.

标签: php .htaccess codeigniter url-rewriting routing


【解决方案1】:

这似乎是应该一直在寻找的问题之一 - How to remove "index.php" in codeigniter's path

还有一个config需要你编辑:

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

把上面写的那行改成下面这样:

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

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

【讨论】:

  • $config['uri_protocol'] = 'REQUEST_URI';已设置,并且 mod_rewrite 也已启用。
  • @TharakaAbeyratne 您服务器上的其他网站是否正常工作?在您介绍 .htaccess 之前,此站点是否正常工作
  • 嘿,我刚刚能够修复它。我必须在 etc/apache2/sites-available 中允许目录列表(我认为这就是它的名称。)并打开“默认”文件并将“AllowOverride none”设置为“AllowOverride All”。谢谢大家。
【解决方案2】:

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

配置:

$config['index_page'] = '';

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2011-11-07
    • 2018-06-27
    • 1970-01-01
    相关资源
    最近更新 更多