路由蛋糕php

时间:2013-01-23 13:16:01

标签: php .htaccess cakephp routing

我正在关注网址

example.com/show.php?xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

我想将其重定向到控制器测试操作redirs。 我怎样才能通过蛋糕php路由或通过htaccess实现这一目标。

1 个答案:

答案 0 :(得分:1)

您只需在app/Config/routes.php文件中输入一个普通路线:

Router::connect('/show.php', array('controller' => 'tests', 'action' => 'redirs'));

如果需要,您可以在您的操作中处理查询字符串中传递的任何内容。