mirror of
https://git.lolcat.ca/lolcat/4get.git
synced 2024-11-08 17:43:07 -05:00
36 lines
952 B
PHP
36 lines
952 B
PHP
|
<?php
|
||
|
|
||
|
header("Content-Type: application/xml");
|
||
|
include "data/config.php";
|
||
|
|
||
|
$domain =
|
||
|
htmlspecialchars(
|
||
|
(strpos(strtolower($_SERVER['SERVER_PROTOCOL']), 'https') === false ? 'http' : 'https') .
|
||
|
'://' . $_SERVER["HTTP_HOST"]
|
||
|
);
|
||
|
|
||
|
echo
|
||
|
'<?xml version="1.0" encoding="UTF-8"?>' .
|
||
|
'<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' .
|
||
|
'<url>' .
|
||
|
'<loc>' . $domain . '/</loc>' .
|
||
|
'<lastmod>2023-07-31T07:56:12+03:00</lastmod>' .
|
||
|
'</url>' .
|
||
|
'<url>' .
|
||
|
'<loc>' . $domain . '/about</loc>' .
|
||
|
'<lastmod>2023-07-31T07:56:12+03:00</lastmod>' .
|
||
|
'</url>' .
|
||
|
'<url>' .
|
||
|
'<loc>' . $domain . '/instances</loc>' .
|
||
|
'<lastmod>2023-07-31T07:56:12+03:00</lastmod>' .
|
||
|
'</url>' .
|
||
|
'<url>' .
|
||
|
'<loc>' . $domain . '/settings</loc>' .
|
||
|
'<lastmod>2023-07-31T07:56:12+03:00</lastmod>' .
|
||
|
'</url>' .
|
||
|
'<url>' .
|
||
|
'<loc>' . $domain . '/api.txt</loc>' .
|
||
|
'<lastmod>2023-07-31T07:56:12+03:00</lastmod>' .
|
||
|
'</url>' .
|
||
|
'</urlset>';
|