diff options
author | lolcat <will@lolcat.ca> | 2023-11-07 08:04:56 -0500 |
---|---|---|
committer | lolcat <will@lolcat.ca> | 2023-11-07 08:04:56 -0500 |
commit | 785452873f0ee0a27fc157b482b7551560f0282d (patch) | |
tree | 4c70e240031ed3868425ca683c83ebfd378a9159 /sitemap.php | |
parent | 64b090ee058953aed2246967332c7f0b6623cd8f (diff) |
fix typo
Diffstat (limited to 'sitemap.php')
-rw-r--r-- | sitemap.php | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/sitemap.php b/sitemap.php new file mode 100644 index 0000000..6f6c095 --- /dev/null +++ b/sitemap.php @@ -0,0 +1,35 @@ +<?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>'; |