【发布时间】:2015-10-02 17:55:34
【问题描述】:
我想用 router.php 来改变 URL(在 CakePHP 2.1.3 版中):
目前,我的网址如下:
http://domain.com/register/add?userName=123&fullName=abc
现在我想将该 URL 更改(重写)为新的:
http://domain.com/regis-new?cus_name=123&cus_full_name=abc
我在 Controller 中的代码:
class RegisterController extends AppController{
function index(){
$userName = $this->request->query['userName'];
$fullName = $this->request->query['fullName'];
}
}
如何配置路由器以应用新 URL?
谢谢
【问题讨论】:
-
"regis-new" 您要调用哪个操作?我的意思是你想调用“添加”或任何其他操作?
标签: cakephp routing routes cakephp-2.0