Complete UK spelling conversion and SEO optimization
This commit is contained in:
87
sitemap.php
Normal file
87
sitemap.php
Normal file
@@ -0,0 +1,87 @@
|
||||
<?php
|
||||
header('Content-Type: application/xml; charset=UTF-8');
|
||||
echo '<?xml version="1.0" encoding="UTF-8"?>';
|
||||
?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
|
||||
|
||||
<!-- Homepage -->
|
||||
<url>
|
||||
<loc>https://ukdataservices.co.uk/</loc>
|
||||
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>1.0</priority>
|
||||
</url>
|
||||
|
||||
<!-- About Page -->
|
||||
<url>
|
||||
<loc>https://ukdataservices.co.uk/about.php</loc>
|
||||
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.9</priority>
|
||||
</url>
|
||||
|
||||
<!-- Project Types Page -->
|
||||
<url>
|
||||
<loc>https://ukdataservices.co.uk/project-types.php</loc>
|
||||
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.8</priority>
|
||||
</url>
|
||||
|
||||
<!-- Quote Page -->
|
||||
<url>
|
||||
<loc>https://ukdataservices.co.uk/quote.php</loc>
|
||||
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.9</priority>
|
||||
</url>
|
||||
|
||||
<!-- Services Section (Homepage) -->
|
||||
<url>
|
||||
<loc>https://ukdataservices.co.uk/#services</loc>
|
||||
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.8</priority>
|
||||
</url>
|
||||
|
||||
<!-- Process Section (Homepage) -->
|
||||
<url>
|
||||
<loc>https://ukdataservices.co.uk/#process</loc>
|
||||
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.7</priority>
|
||||
</url>
|
||||
|
||||
<!-- Why Choose Us Section (Homepage) -->
|
||||
<url>
|
||||
<loc>https://ukdataservices.co.uk/#why-us</loc>
|
||||
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.7</priority>
|
||||
</url>
|
||||
|
||||
<!-- Contact Section (Homepage) -->
|
||||
<url>
|
||||
<loc>https://ukdataservices.co.uk/#contact</loc>
|
||||
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.8</priority>
|
||||
</url>
|
||||
|
||||
<!-- Key Images for Image SEO -->
|
||||
<url>
|
||||
<loc>https://ukdataservices.co.uk/</loc>
|
||||
<image:image>
|
||||
<image:loc>https://ukdataservices.co.uk/assets/images/ukds-main-logo.png</image:loc>
|
||||
<image:caption>UK Data Services Logo</image:caption>
|
||||
<image:title>UK Data Services - Professional Web Scraping and Data Analytics</image:title>
|
||||
</image:image>
|
||||
<image:image>
|
||||
<image:loc>https://ukdataservices.co.uk/assets/images/hero-data-analytics.svg</image:loc>
|
||||
<image:caption>Data Analytics and Web Scraping Services</image:caption>
|
||||
<image:title>Enterprise Data Solutions</image:title>
|
||||
</image:image>
|
||||
</url>
|
||||
|
||||
</urlset>
|
||||
Reference in New Issue
Block a user