What does this rewrite rule do?
Hi, I'm somewhat new to htaccess files, so I was wondering if I could get some help deciphering one from one of the projects I'm working on. Any idea what this is supposed to do:
Code:
RewriteEngine on
RewriteBase /v5.issue12/
Options +FollowSymLinks
rewritecond %{http_host} ^ee\.com$ [NC]
rewriteRule ^(.*) http://www.ee.com/v5.issue12/$1 [R=301,L]
RewriteRule ^([^frame|index].+).html$ index_.php?tpl=$1.html [T=application/x-httpd-php]
Much thanks for any help!