I have a sitemap in PHP sitemap-latest.php and i want to change the extension to .xml without affecting the file and content in it.
RewriteEngine On
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^sitemap-latest.xml$ sitemap-latest.php [L] #NoEffect
RewriteRule ^sitemap-latest\.php$ sitemap-latest.xml [R=301,L] #Redirect to folders https://www.example.com/var/www/vhosts/mirrorblogs.com/website1/sitemap-latest.xml
RewriteRule ^sitemap-latest.php$ sitemap-latest.xml [L] #404 error for both php and xml
But nothing is happening. example.com/sitemap-latest.php not changing to example.com/sitemap-latest.xml