我正在尝试使用cakephp的重定向控制器功能重定向包含#标签符号的网址。
当我使用此代码时,它会对主题标签进行编码
$this->redirect(array('action' => 'index',$menuItem."#article_id_".$created_id));
output: http://something.com/link%23article_id_62
有没有办法
答案 0 :(得分:10)
您需要使用#
密钥:
$this->redirect([
// ...
'#' => 'article_id_' . $created_id,
]);