I\'m trying to create a sitemap that will automatically update. I\'ve done something similiar with my RSS feed, but this sitemap refuses to work. You can view it live at htt
The best solution is to add to your apache .htaccess
file the following line after RewriteEngine On
RewriteRule ^sitemap\.xml$ sitemap.php [L]
and then simply having a file sitemap.php
in your root folder that would be normally accessible via http://yoursite.com/sitemap.xml
, the default URL where all search engines will firstly search.
The file sitemap.php
shall start with
' ?>
it works :)