如何在CakePHP中重写URL

时间:2014-09-15 05:56:44

标签: php cakephp url-rewriting cakephp-2.3

我正在使用Cake 2.3,我有一个这样的网址:

http://www.example.com/events/event_name

我想要展示

http://www.example.com/event_name

我已经通过了很多链接,但没有成功,我在这里发帖。 请帮助我。

1 个答案:

答案 0 :(得分:5)

如cakephp official documentation中所述,您可以在bootstrap.php文件中使用Router类,如

Router::redirect('/posts/*', 'http://google.com', array('status' => 302));