2011-08-16 79 views
3

在CodeIgniter中,我想刪除我的本地主機(WAMP)上的URL中的「index.php」。例如,http://localhost.com/ci/index.php/controller/functionhttp://localhost.com/ci/controller/functionCodeIgniter:在WAMP上刪除URL中的「index.php」

我已經改變

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

我的.htaccess文件(它位於根目錄下,其中的index.php所在)如下:

<IfModule mod_rewrite.c> 
RewriteEngine On 
RewriteBase /igniter 

#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 
#This last condition enables access to the images and css folders, and the robots.txt file 
#Submitted by Michael Radlmaier (mradlmaier) 
RewriteCond $1 !^(index\.php|images|robots\.txt|css) 
RewriteRule ^(.*)$ index.php/$1 [L] 
</IfModule> 

<IfModule !mod_rewrite.c> 
# If we don’t have mod_rewrite installed, all 404’s 
# can be sent to index.php, and everything works as normal. 
# Submitted by: ElliotHaughin 

ErrorDocument 404 /index.php 
</IfModule> 

我也進入了httpd.conf文件並取消註釋LoadModule rewrite_module modules/mod_rewrite.so

最後httpd.conf文件中的目錄部分看起來像這樣的..

<Directory /> 
    Options FollowSymLinks 
    AllowOverride All 
    Order deny,allow 
    Deny from all 
</Directory> 

而且我仍然無法得到它的工作。該網頁上寫着:「請求的URL/DB /網站在此服務器上找到。」

任何幫助將不勝感激,謝謝!

+3

也許'RewriteBase /' –

+0

你是對的!只需將其設置到正確的目錄。謝啦。 – Danny

+1

丹尼,如果阿方索解決了你的問題,你需要接受他的回答,這樣他才能得到回報。 – KyleFarris

回答

5

嘗試:

RewriteBase/

要更改目錄

+1

如果有人使用別名,這個工作:RewriteBase /別名 – rostamiani