codeigniter url 处理以删除 index.php 和方法名称 [英] codeigniter url handling to remove index.php and method name

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

问题描述

我第一次使用 codeigniter,我必须管理我的 URL 才能在没有 index.php/controller 的情况下查看 URL,所以我如何编写 ht 访问权限以及将它保存在我的文件夹结构以及我必须进行的任何其他更改的位置在我的自动加载或配置文件中做....

我的网址如下...

<块引用>

project_name/index.php/controller_name/method_name/param 1/param 2

那么对于这个网址,我该如何编写 ht 访问规则?请需要帮助......

解决方案

打开 config.php 并进行如下替换

$config['index_page'] = "index.php"

$config['index_page'] = ""

直接替换

$config['uri_protocol'] ="AUTO"

$config['uri_protocol'] = "REQUEST_URI"

在 HTACCESS 文件中输入以下代码

RewriteEngine onRewriteCond $1 !^(index.php|resources|robots.txt)RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-d重写规则 ^(.*)$ index.php/$1 [L,QSA]

hi i am using codeigniter first time and i have to manage my URL to view URL without index.php/controller so how can i write ht access and where i keep it my folder structure as well as any other changes i have to do in my auto load or config file....

my URL is like below...

project_name/index.php/controller_name/method_name/param 1/param 2

so for this URL how can i write ht access rule?please need helpful......

解决方案

Open config.php and do following replaces

$config['index_page'] = "index.php"

to

$config['index_page'] = ""

Just replace

$config['uri_protocol'] ="AUTO"

to

$config['uri_protocol'] = "REQUEST_URI"

AND IN HTACCESS FILE put following code

RewriteEngine on
RewriteCond $1 !^(index.php|resources|robots.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]

这篇关于codeigniter url 处理以删除 index.php 和方法名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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