从codeIgniter删除的index.php [英] Remove index.php from CodeIgniter

查看:132
本文介绍了从codeIgniter删除的index.php的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我用codeIgniter 2.2.0和2.5.10 AppServ一起作为本地服务器。 在config.php文件我敢肯定的:$配置['index_page'] =''; 这是在根文件夹中的.htaccess(护理):

I'm using CodeIgniter 2.2.0, and AppServ 2.5.10 as local server. In the config.php I'm sure from: $config['index_page'] = ''; And this is the .htaccess in the root folder (nursing):

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /nursing/

#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]

#When your application folder isn't in the system folder
#This snippet prevents user access to the application folder
#Submitted by: Fabdrol
#Rename 'application' to your applications folder name.
RewriteCond %{REQUEST_URI} ^application.*
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>

当我试图去:本地主机/护理/欢迎/索引,AppServ一起欢迎页面出现了!不欢迎控制器,它应该是

When I try to go to: localhost/nursing/welcome/index, the AppServ welcome page appeared!, not the welcome controller as it should be!

推荐答案

写这篇code在.htaccess

Write this code in .htaccess

RewriteEngine On
RewriteCond %{REQUEST_URI} ^/system.*
RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?/$1 [L]

这篇关于从codeIgniter删除的index.php的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆