Quote:
Originally Posted by plsureking
the google sitemap is pretty basic. just auto generate it yourself. i assume you have an easy way to dump a list of all pages of the site?
this is the format:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.google.com/schemas/sitemap/0.84">
<url>
<loc>http://www.domain.com/Home</loc>
<lastmod>2016-01-15</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>http://www.domain.com/Video</loc>
<lastmod>2016-01-15</lastmod>
<changefreq>daily</changefreq>
</url>
</urlset>
PornCMS has been auto generating them for every site every day since the first version. There's nothing to it.

|
Yes I have, I'm just not sure what to put into lastmod and changefreq, I don't keep this data in my database (I only have the date of publishing the url/video). But thanks for the exemple.