我有索引控制器。我需要在 indexAction 中设置原始标题。我试着做
function indexAction(){
$this->getResponse()->setRawHeader('HTTP/1.1 404 Not Found');
}
但我在 Google chrome 中看到状态 200 OK。
如何设置原始标题?
我有索引控制器。我需要在 indexAction 中设置原始标题。我试着做
function indexAction(){
$this->getResponse()->setRawHeader('HTTP/1.1 404 Not Found');
}
但我在 Google chrome 中看到状态 200 OK。
如何设置原始标题?