如何为CakePHP创建站点地图?

前端之家收集整理的这篇文章主要介绍了如何为CakePHP创建站点地图?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想创建一个站点地图,但我对Sitemaps的使用知之甚少.我用Cake PHP.谷歌和指南上有很多软件,但我仍然想要问一下,为CakePHP建站点地图的简单方法.

我在服务器上传了网站,它不依赖于localhost.

这是一个快速的例子供您玩耍并根据您的需求进行调整:

在你的控制器中:

public $components = array('RequestHandler');

public function sitemap()
{
    Configure::write('debug',0);

    $articles = $this->Article->getSitemapInformation();

    $this->set(compact('articles'));
    $this->RequestHandler->respondAs('xml');
}

你的“文章”模型:

public function getSitemapInformation()
{
    return $this->find('all',array(/* your query here */));
}

视图:

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <?PHP foreach ($articles as $article): ?>
    <url>
        <loc><?PHP echo Router::url(/* generate the URLs here */); ?></loc>
        <lastmod><?PHP echo $time->toAtom(/* last update time here */); ?></lastmod>
        <changefreq>weekly</changefreq>
    </url>
    <?PHP endforeach; ?>
</urlset>

猜你在找的PHP相关文章