簡體   English   中英

CodeIgniter:刪除 WAMP 上 URL 中的“index.php”

[英]CodeIgniter: Removing “index.php” in URL on WAMP

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

我改變了

$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/site。”

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

嘗試:

RewriteBase /

更改目錄

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM