<?php
header('Content-type: text/xml');
$url = 'https://www.elasticpath.com/getelastic-feed';
$str = file_get_contents($url);
echo $str;
//$xml = simplexml_load_string($str);
//print_r($xml);
//exit;
/*$string = <<<XML
<?xml version="1.0"?>
<redirect>
  <newLocation>https://blog-elastic-path-d8.pantheonsite.io/blog/feeds.xml</newLocation>
</redirect>
XML;

$xml = simplexml_load_string($string);

print_r($xml);*/
