Forum Moderators: phranque
RewriteEngine on
RewriteCond %{HTTP_HOST}!^www\.site\.com
RewriteRule (.*) [site.com...] [R=301,L]
But it does not work with site.com/abc/ because there is another .htaccess file under /abc/folder:
RewriteEngine On
RewriteRule ^somefile.html$ /abc/file.php [L]
How to solve this problem?