<?php
$host=(isset($_SERVER['HTTP_HOST']))?$_SERVER['HTTP_HOST']:'m.xvideos.fr';
$content=@file_get_contents("http://{$host}/sitemap.php");
header('content-type: application/x-gzip');
header('Content-Disposition: attachment; filename="sitemap.xml.gz"');
echo @gzencode($content,9);
?>