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, 
change lifetype/tmp/.htacess to allow the sitemap folder to be read by a web browser

<Files "*">
 Order deny,allow
 Deny from all
</Files>

<Files "sitemap.gz">
 Order deny,allow
 Allow from all
</Files>

Add the following lines to the lifetype/.htaccess

<IfModule mod_rewrite.c>
 
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]

</IfModule>