Plugin: SiteMap
Author: paul@westbrooks.org
Release Date: 20070417
Version: 20070417
Creates Google Sitemap for a blog. This plugin adds all of the permalinks from
a given blog to a site map file. It can also optionally automatically notify
Google that this file has changed.
In order for the site map to be accessible,
add the following lines to lifetype/tmp/.htacess to allow the sitemap folder to be read by a web browser
Order deny,allow
Allow from all
Add the following lines to the lifetype/.htaccess
RewriteEngine On
RewriteBase /
# Point to the sitemap file that is local to the blog if user use NORMAL_REQUEST_MODE
RewriteRule ^sitemap([0-9]+)\.gz$ tmp/sitemap/$1/sitemap.gz [L,NC]
# Point to the sitemap file that is local to the blog if user use OTHER REQUEST MODE
RewriteRule ^/(.*)/sitemap([0-9]+)\.gz$ tmp/sitemap/$2/sitemap.gz [L,NC]