摆脱CodeIgniter URL中的Index.php

时间:2014-05-31 04:24:57

标签: php mysql apache .htaccess codeigniter

如何从网址中删除“index.php”?

描述

使用CI构建一个简单的MySQL-Php应用程序,我无法摆脱URL中的“index.php”标记:

localhost/CodeIgniter/index.php/Defult_Controller/index

的.htaccess

application/.htaccessapplication/cache/.htaccess

<IfModule mod_rewrite.c>

# !IMPORTANT! Set your RewriteBase here and don't forget trailing and leading
#  slashes.
# If your page resides at
#  http://www.example.com/mypage/test1
# then use
# RewriteBase /mypage/test1/

RewriteEngine On
RewriteBase /CodeIgniter/
RewriteCond %{REQUEST_URI} ^system.*
RewriteCond $1 !^(index\.php|images|js|uploads|css|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
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>

的apache.conf

LoadModule rewrite_module modules/mod_rewrite.so

应用/配置/ config.php中

$config['base_url'] = "http://localhost/CodeIgniter/";
$config['index_page'] = '';

PS:我正在使用codeIgniter 2.5.1和xampp 3.2.1

1 个答案:

答案 0 :(得分:0)

您需要将.htaccess放在根文件夹中以删除index.phpapplication/.htaccess是为了避免目录视图。