
# .htaccess main domain to subdirectory redirect 
# Do not change this line. 
RewriteEngine on 
# Change example.com to be your main domain. 
RewriteCond %{HTTP_HOST} ^(www.)?a-1techsolutions.com$ 
# Change 'subdirectory' to be the directory you will use for your main domain. 
RewriteCond %{REQUEST_URI} !^/Site/ 
# Don't change the following two lines. 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
# Change 'subdirectory' to be the directory you will use for your main domain. 
RewriteRule ^(.*)$ /Site/$1 
# Change example.com to be your main domain again. 
# Change 'subdirectory' to be the directory you will use for your main domain 
# followed by / then the main file for your site, index.php, index.html, etc. 
RewriteCond %{HTTP_HOST} ^(www.)?a-1techsolutions.com$ 
RewriteRule ^(/)?$ Site/Home.php [L]
RewriteCond %{HTTP_HOST} ^a\-1techsolutions\.com\.bh\-57\.webhostbox\.net$ [OR]
RewriteCond %{HTTP_HOST} ^www\.a\-1techsolutions\.com\.bh\-57\.webhostbox\.net$
RewriteRule ^/?$ "http\:\/\/a\-1techsolutions\.com" [R=301,L]

