我的框架--QiCai(路由类)

首先重新规划一下文件布局创建core/lib将路由类文件route.php放到lib中(记得更改命名空间namespace core\lib;)

当访问网址为http://www.qcy.com/QiCai/index/index时实际访问为http://www.qcy.com/QiCai/index.php/Index/index

route.php

<?php
namespace core\lib;
use core\lib\conf;
/**
 * 路由
 */
class route
{
public $ctrl;
public $action;
public function __construct()
{
/**
* 1、隐藏index.php
* 2、获取URL参数部分
* 3、返回对应控制器和方法
*/
// p($_SERVER);
if(isset($_SERVER['REQUEST_URI']) && $_SERVER['REQUEST_URI'] != '/QiCai/'){
$path = $_SERVER['REQUEST_URI'];
$patharr = explode('/', trim($path,'/'));
// p($patharr);
//判断控制器
if(isset($patharr[1])){
$this->ctrl = $patharr[1];
}
unset($patharr[1]);
//判断方法
if(isset($patharr[2])){
$this->action = $patharr[2];
unset($patharr[2]);
}else{
$this->action = conf::get('ACTION','route');
}
// p($patharr);die;
//url多余部分转换成 GET 比如: id/1/str/2
$count = count($patharr) + 2;
$i = 3;
while($i < $count){
if(isset($patharr[$i + 1])){
$_GET[$patharr[$i]] = $patharr[$i + 1];
}
$i = $i + 2;
}
// p($_GET);
}else{
$this->ctrl = conf::get('CTRL','route');
$this->action = conf::get('ACTION','route');
}
}
}

在框架根目录中创建.htaccess文件

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>






  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值