Creating an XML sitemap with PHP

后端 未结 3 1582
庸人自扰
庸人自扰 2020-12-08 08:23

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

3条回答
  •  一整个雨季
    2020-12-08 08:37

    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 :)

提交回复
热议问题