Site is built in an old 2.* MU.... need to redirect the current homepage (www.aaaa.com) to a sub-site (www.aaaa.com/bbb) how can I achieve this?
Thank You
Site is built in an old 2.* MU.... need to redirect the current homepage (www.aaaa.com) to a sub-site (www.aaaa.com/bbb) how can I achieve this?
Thank You
in your .htaccess file:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^aaaa\.com
RewriteRule ^(.*)$ http://www.aaaa.com/bbb$1 [R=permanent,L]You must log in to post.