Where is the englishtap.com sitemap XML ?
VIEW load-full-page from "engine-request-page" sets the view controller factory to handle robots.txt & sitemap.xml and sitemap Approx line 70
The VC factory ->index() case statement
Note: The view robots outputs a text file format for bots but an HTML page for humans. To output as a bot use ?
XML TXT - Dynamic Files
Use the loadView("engine-driver-intercept" to intercept certain static files and make them more dynamic.
Adding meta data
Sitemap XML meta data can be added to Since you have control of the sitemap file, you can decide to add your own custom elements containing metadata. If you add bespoke elements containing metadata, you must still keep to the specification and follow the Sitemap protocol
Validate the Sitemap
Sitemap validator - WEBSITE PLANET1 Bullet Provide a sitemap feed which includes links to the homepages of all member sites and a fair number of links to content on those sites.
Example Sitemap
Note: the <stone> element is optional. It provides a meaningful desciption to the link without the need to request that page and examine metaData.
<?xml version="1.0" encoding="UTF-8"?>
<urlset>
<url>
<stone>Our Home Page </stone>
<loc> https://example.com</loc>
</url>
<url>
<stone> Contact Us </stone>
<loc> https://example.com/contact-page</loc>
</url>
<url>
<stone> Joe Bloggs Affairs </stone>
<loc> https://joebloggs.org</loc>
</url>
</urlset>
sitemap-directions Comments