How to create a Sitemap for CakePHP?
Here's a quick'n'dirty example for you to play with and adjust to your needs:
In your controller:
public $components = array('RequestHandler');
public function sitemap()
{
Configure::write('debug', 0);
$articles = $this->Article->getSitemapInformation();
$this->set(compact('articles'));
$this->RequestHandler->respondAs('xml');
}
Your "Article" model:
public function getSitemapInformation()
{
return $this->find('all', array(/* your query here */));
}
View:
<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>
That is a good start, now just add:
Router::parseExtensions('xml');
to routes.php
From there you want to have a route like:
Router::connect('/sitemap', array('controller' => 'posts' ....., 'ext' => 'xml'))
that will direct site.com/sitemap.xml to the controller/action where the sitemap is.
create a xml layout with the correct headings, and move the view file to views/posts/xml/file.ctp
Even better: add Router::parseExtensions('xml');
to routes.php (without the typo)