ini_set('display_errors', '0'); error_reporting(E_ERROR); ob_start(); header('Content-Type: application/xml; charset=utf-8'); header('X-Robots-Tag: noindex'); ob_end_clean(); $today = date('Y-m-d'); $base = 'https://maboutik.fr/'; // Liste des pages publiques navigables avec priorité + fréquence de mise à jour SEO. // Toutes ces routes correspondent à des entrées de params/allowedPages.php et // sont accessibles sans authentification. $pages = [ // Pages principales (priorité max) ['url' => '', 'priority' => '1.0', 'changefreq' => 'daily'], ['url' => 'home/', 'priority' => '0.9', 'changefreq' => 'daily'], ['url' => 'search/', 'priority' => '0.8', 'changefreq' => 'daily'], ['url' => 'boutiks/', 'priority' => '0.9', 'changefreq' => 'daily'], // Acquisition / inscription ['url' => 'tarif/', 'priority' => '0.9', 'changefreq' => 'weekly'], ['url' => 'howitworks/', 'priority' => '0.8', 'changefreq' => 'weekly'], ['url' => 'exemples/', 'priority' => '0.7', 'changefreq' => 'weekly'], ['url' => 'avis/', 'priority' => '0.7', 'changefreq' => 'weekly'], ['url' => 'createAccount/', 'priority' => '0.8', 'changefreq' => 'monthly'], ['url' => 'creation-boutik/', 'priority' => '0.7', 'changefreq' => 'monthly'], // Support ['url' => 'help/', 'priority' => '0.6', 'changefreq' => 'monthly'], ['url' => 'faq/', 'priority' => '0.6', 'changefreq' => 'monthly'], ['url' => 'contact/', 'priority' => '0.5', 'changefreq' => 'monthly'], ['url' => 'tipsAddHome/', 'priority' => '0.3', 'changefreq' => 'yearly'], // Mentions / légal (basse priorité, indexées quand même pour Google) ['url' => 'mentions-legales/', 'priority' => '0.2', 'changefreq' => 'yearly'], ['url' => 'politique-confidentialite/', 'priority' => '0.2', 'changefreq' => 'yearly'], ['url' => 'cookies/', 'priority' => '0.2', 'changefreq' => 'yearly'], ['url' => 'conditions-generales/', 'priority' => '0.2', 'changefreq' => 'yearly'], ]; echo ''."\n"; echo ''."\n"; foreach($pages as $p){ echo " \n"; echo " ".htmlspecialchars($base.$p['url'], ENT_XML1)."\n"; echo " ".$today."\n"; echo " ".$p['changefreq']."\n"; echo " ".$p['priority']."\n"; echo " \n"; } echo ''."\n";