/*
https://www.sitemaps.org/fr/protocol.php
https://www.example.com/
2005-01-01
monthly
0.8
*/
header("Content-Type: text/xml; charset=ISO-8859-1");
session_start();
require("global/mysql.php");
require("global/parametres.php");
require("global/fonctions_generiques.php");
require("modules/general/url_rewriting_fonctions.php");
require("modules/general/metas_fonctions.php");
function sitemap_url_creation($url)
{
$sitemap_url = 'https://' .SITE_URL. $url. '' ;
return $sitemap_url ;
}
$lg = "FR" ;
$sitemap_xml = '' ;
// $sitemap_xml .= '' ;
$sitemap_xml .= '' ;
// URL ACCUEIL
$sitemap_xml .= '' ;
$sitemap_xml .= 'https://' .SITE_URL .'' ;
$sitemap_xml .= '' ;
// Module STATIQUE
$sitemap_xml .= 'https://' .SITE_URL. SITE_ROOT .'services-audits-conseils-laboratoires.html' ;
$sitemap_xml .= 'https://' .SITE_URL. SITE_ROOT .'atouts.html' ;
$sitemap_xml .= 'https://' .SITE_URL. SITE_ROOT .'engagements.html' ;
$sitemap_xml .= 'https://' .SITE_URL. SITE_ROOT .'parcours.html' ;
$sitemap_xml .= 'https://' .SITE_URL. SITE_ROOT .'clients.html' ;
$sitemap_xml .= 'https://' .SITE_URL. SITE_ROOT .'contact.html' ;
$sitemap_xml .= '' ;
echo $sitemap_xml;
?>