Here is my .htaccess now
rewriteengine on
rewritecond %{HTTP_HOST} ^www.example.com$ [OR]
rewritecond %{HTTP_HOST} ^example.com$
rewriterule ^index.php/? "http\:\/\/example\.com\/" [R=301,L] #4a397bb852bc9
Which sends all requests from the root directory to index.php What I need to do is send all requests from www.example.com/site2/ to www.example.com/site2/index.php
My understanding of regex has always stopped short of these curious rules and conds
Thanks, Joe