Hi,
I am trying to redirect all requests coming from example.com to a subdirectory. The code below accomplishes this but I cannot make the subdirectory invisible. (The subdirectory contains a Drupal instance with its own/htaccess file. Could that be the problem?)
RewriteCond %{HTTP_HOST} ^example.com$ [NC]
RewriteRule ^(.*)$ http://example.com/drupal/d6/$1 [L]
This ends up looking like this in the browser:
http://example.com/drupal/d6/install.php?profile=default
EDIT: I tried removing http://example.com from the RewriteRule, as recommended, but the redirect is still not invisible. :-(