蛋糕3: - 如何在cakephp 3中使用htaccess RewriteRule?

时间:2016-04-28 12:52:02

标签: cakephp cakephp-3.0

我正在做蛋糕3。

我有一个蛋糕3网址: - www.test.com/users/account/john

并希望此网址如www.test.com/john

我不知道该怎么做, 请让我知道如何做到这一点。

1 个答案:

答案 0 :(得分:0)

// config/routes.php

Router::scope('/', function ($routes) {
    //...
    // add at end 
    $routes->connect('/*', ['controller' => 'Users', 'action' => 'account']);

}


//

//UsersController.php

public function account($slug = null){
 // your code here
}

// in view
echo $this->Html->link('John',['controller' => 'Users', 'action' => 'account','john']);