Advertisement
citstudio

Sitemap XML cakePHP - Part 3

Jul 12th, 2014
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.75 KB | None | 0 0
  1. <?php echo '<?xml version="1.0" encoding="UTF-8" ?>' ?>
  2. <?php $uri = "sitemap.xsl"; ?>
  3. <?php echo '<?xml-stylesheet type="text/xsl" href="' . $uri . '"?>' ?>
  4. <urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  5.   <url>
  6.     <loc><?php echo Router::url('/', true); ?></loc>
  7.     <changefreq>daily</changefreq>
  8.     <priority>1.0</priority>
  9.   </url>
  10.   <url>
  11.     <loc><?php echo Router::url('/', true); ?></loc>
  12.     <priority>0.5</priority>
  13.     <changefreq>daily</changefreq>
  14.     <lastmod><?php echo CakeTime::toAtom(date("Y-m-d h:i:s"))?> </lastmod>
  15.   </url>
  16. </urlset>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement