Codeigniter:删除.htaccess

时间:2017-01-17 09:48:02

标签: php apache .htaccess codeigniter mod-rewrite

我目前的Url看起来像这样:

http://www.example.com/testdesign/index.php/tasks

我需要它重定向到:

http://www.example.com/testdesign/tasks

我的codeignitor root .htaccess文件包含

<IfModule mod_rewrite.c>
   RewriteEngine On
   RewriteBase /
   RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
   RewriteCond %{REQUEST_URI} !/system/.* [NC]
   RewriteRule (.?)index\.php/(.*) /$1$2 [R=301,NE,L]
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

在我的apache服务器上启用了mod_rewrite。

在我的配置文件中:

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

当我从localhost运行它时,它显示我这样:

http://www.example.com/tasks

但是我想删除index.php而不是子域。

我知道这可能是一个非常小的问题,但我无法找到错误。

请你给我一些适当的建议吗?

任何形式的帮助都将受到高度赞赏。

提前致谢。

4 个答案:

答案 0 :(得分:0)

试试这个:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /testdesign

# Removes access to the system folder by users.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]

# Prevents user access to the application folder
RewriteCond %{REQUEST_URI} ^application.*
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]
</IfModule>

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

即使您没有配置uri_protocol和base_url也可以。

答案 1 :(得分:0)

试试这样。在.htaccess文件中

<IfModule mod_rewrite.c>
   RewriteEngine On
   RewriteBase /
   RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
   RewriteCond %{REQUEST_URI} !/system/.* [NC]
   RewriteRule (.?)index\.php/(.*) /$1$2 [R=301,NE,L]
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteRule ^(.*)/testdesign$ index.php/$1 [L]
</IfModule>

OR

设置$config['base_url']='http://www.example.com/testdesign/'

然后  运行www.example.com/testdesign/tasks

答案 2 :(得分:0)

您应该尝试使用NameError代替base_url()。即使正确设置了重写配置,如果您使用的是site_url(),也会看到 index.php 文件。

在文档中查看更多内容:site_urlr()base_url()

您还应该在 config / config.php

中留下 index_page 配置为空白
site_url()

答案 3 :(得分:0)

将以下代码替换为.htaccess代码

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