欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

yaf 自定义重写路由rewrite

程序员文章站 2024-02-15 19:26:17
...

直接上代码
bootstrap

 public function _initRoute(Yaf_Dispatcher $dispatcher)
    {
        //在这里注册自己的路由协议,默认使用简单路由
        //$route= new Base_route();
        //$dispatcher->getRouter()->addRoute('myroute',$route);
        $router = Yaf_Dispatcher::getInstance()->getRouter();
        $route = new Yaf_Route_Rewrite(
            'security/:ident/:rout',
            array(
                'controller' => 'Security',
                'action' => 'html')
        );
        $router->addRoute('html1asdfd', $route);

    }

在/application/controllers/Security.php的html方法如下

public function htmlAction($ident){
        echo 'html action';
        echo '<hr>';
        var_dump($this->getRequest()->getParam('ident'));
        var_dump($this->getRequest()->getParam('rout'));

结果
yaf 自定义重写路由rewrite

鸟哥的文档真心不错