<?php

/* 
Austin Hunt 
July 26, 2024 

URL: https://dynomapper-sitemap.s3.us-west-2.amazonaws.com/bL2kG/sitemap.xml
Pull in the Dynamic sitemap.xml file from the Dynomapper S3 bucket and return it as XML to the user. 


*/

// Set the content type to XML
header('Content-Type: application/xml');

// Get the sitemap.xml file from the S3 bucket
echo file_get_contents('https://dynomapper-sitemap.s3.us-west-2.amazonaws.com/bL2kG/sitemap.xml');
