1

我一直在尝试使用 mod-rewrite 从我的 Codeigniter 站点中删除“index.php”。但是我最终遇到了这个问题:

原始 URI: http: //mysite.com/index.php/about

删除 index.php 使其工作的唯一方法:http: //mysite.com//about(注意额外的斜杠)

删除多余的斜杠会导致 Codeigniter 无法“看到”域之后的 url 字符串。

我现在尝试了 3 种不同的 mod-rewrite 方法,最终都遇到了同样的问题 - URI 不起作用,除非你在域名后添加一个额外的斜杠。

我当前的 mod_rewrite 代码:

<IfModule mod_rewrite.c>

RewriteEngine On
RewriteBase /

RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteCond %{THE_REQUEST} !/system/.*
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,L]

RewriteCond $1 !\.(css|js|gif|jpe?g|png) [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]

RewriteCond %{HTTP_HOST} ^www.domain.co
RewriteRule (.*) http://domainname.co/$1 [R=301,L]

</IfModule>
4

2 回答 2

0

首先:请发布您正在使用的 mod_rewrite 代码,以确保其正确。

第二:检查您的应用程序配置文件,您的索引页面设置为这样$config['index_page'] = '';

于 2012-09-02T14:14:22.067 回答
0

问题的解决方案非常简单。

像这样编辑你的.htaccess-

<IfModule mod_rewrite.c>

RewriteEngine On
RewriteBase /<directory_where_your_code_is_kept>/

RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteCond %{THE_REQUEST} !/system/.*
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,L]

RewriteCond $1 !\.(css|js|gif|jpe?g|png) [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]

RewriteCond %{HTTP_HOST} ^www.domain.co
RewriteRule (.*) http://domainname.co/$1 [R=301,L]

</IfModule>

然后转到config.php并进行这些更改 -

$config['base_url'] = 'http://localhost/<directory_where_your_code_is_kept>';
$config['index_page'] = '';
$config['uri_protocol'] = 'REQUEST_URI';
于 2012-09-02T14:28:26.940 回答