<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ public/ [L]
RewriteRule ((?s).*) public/$1 [L]
</IfModule>
$xml = simplexml_load_string(file_get_contents($url));
foreach($xml->Section->Item as $index => $item){
if ($index === 0){
continue;
}
echo "<p>$item->Description</p>";
echo "<p>$item->Image</p>";
}