If your website uses a long URL such as example.com/files/folder/sitemap.html, you can change it to example.com/sitemap using htaccess.
Modify this code to suit your needs, then add it to your htaccess file:
RewriteEngine on
RewriteRule ^sitemap/$ /files/folder/sitemap.html [L]
Add Comment