We turned off .htaccess files to save the added step of checking for that file everytime a page is requested. We put all of that type of data into the httpd.conf file. It allowed us to squeeze a little more processing power out of our boxes.
I placed the rewrite lines into the virtualhost section for that particular URL. It essentially looks like this...
Code:
<virtualhost *:80>
servername forums.bimmerforums.com
documentroot /path/to/webroot
RewriteEngine on
-- some other rewriterules --
RewriteRule ^(sitemap.*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
</virtualhost>