We can set redirect for domain by using following RewriteRule entry in .htaccess
Quote:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^xyz.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.xyz.com$
RewriteRule ^(.*)$ http://www.xyz.com/test//$1 [R=301,L]
|
The above entry redirect the domain xyz.com to xyz.com/test