cakephp 2使用#标签重定向url

时间:2011-12-23 11:26:51

标签: cakephp redirect

我正在尝试使用cakephp的重定向控制器功能重定向包含#标签符号的网址。

当我使用此代码时,它会对主题标签进行编码

$this->redirect(array('action' => 'index',$menuItem."#article_id_".$created_id));

output: http://something.com/link%23article_id_62

有没有办法

1 个答案:

答案 0 :(得分:10)

您需要使用#密钥:

$this->redirect([
    // ...
    '#' => 'article_id_' . $created_id,
]);