デフォルトのテンプレートと、home.ctp という名前のビューがあります。
ユーザーがホームページを呼び出すと、ホームビューがdefault.ctp 内でレンダリングされます。
私の見解では:
<?php
$this->set('title', 'This is the title');
$this->set('description', 'This is the description');
...
?>
私のdefault.ctpには次のものがあります。
<title><?php echo $title; ?></title>
....
<meta name="description" content="<?php echo $description; ?>">
....
正しく動作しますが、これは CakePHP でタイトルとメタタグを追加する正しい方法ですか?
ありがとうございました!