PHP Classes

File: examples/example2/sitemap.xml

Recommend this page to a friend!
  Classes of Computing Mongoose   Simple PHP SiteMap Generator   examples/example2/sitemap.xml   Download  
File: examples/example2/sitemap.xml
Role: Sample output
Content type: text/plain
Description: XML sitemap
Class: Simple PHP SiteMap Generator
Generate XML and text sitemaps from lists of pages
Author: By
Last change:
Date: 11 months ago
Size: 528 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>https://mywebsite/index.html</loc> <lastmod>2023-10-01</lastmod> <changefreq>daily</changefreq> <priority>0.9</priority> </url> <url> <loc>https://mywebsite/file1.html</loc> <lastmod>2023-01-01</lastmod> <changefreq>daily</changefreq> <priority>0.7</priority> </url> <url> <loc>https://mywebsite/file2.html</loc> <lastmod>2023-10-01</lastmod> <changefreq>weekly</changefreq> <priority>0.5</priority> </url> </urlset>