Nasıl özel bir 404 sayfa sayfa başlığını ayarlarım?

0 Cevap php

Ben bir denetleyici bir 404 sayfa için bir çağrı var:

$this->set('title','Page Not Found');
$this->cakeError('error404');

Bu benim özel 404 sayfası kullanır, ama başlık yok sayar. Başlığı "Hata" olarak ayarlanmış olur.

Bunu nasıl ayarlarım?

public.ctp (ben boş kullanarak değilim)

<?php header('Content-type: text/html; charset=UTF-8') ;?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <?php echo $html->charset('utf-8'); ?>
    <title><?php echo $title_for_layout?></title>

app_controller.php

function beforeRender() {
    if($this->name == 'CakeError') {
        $this->set('title_for_layout', 'Page Not Found');
        $this->layout = 'public';
    }
}

action

$this->pageTitle = 'Page Not Found';
$this->cakeError('error404');

0 Cevap