I use phpbb2 as the forum for my site. I downloaded a scriptwiz.com script to make an html archive of the forum. Having never used mod_rewrite on Apache before, I'm not sure if the code is correct. They wrote the original script for unix. Here is what they have in the .htaccess file(I put it in the www/forum_archive/ dir).
RewriteEngine On
RewriteRule ^.+\.html$ index.php [L]
RewriteRule ^.+\.htm*$ index.php [L]
RewriteRule ^member-.+\.html*$ index.php [L]
RewriteRule ^members.+$ index.php [L]
RewriteRule ^(.+)/$ index.php [L]
The script doesn't work and I think it is a mod_rewrite issue because the configuration params are fairly straightforward(there are only 4 of them).
If anyone has some simple mod_rewrite examples I'd love to look at them.
Thanks for your help.