• 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

Viewing 1 replies (of 1 total)
  • in your .htaccess file:

    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^aaaa\.com
    RewriteRule ^(.*)$ https://www.aaaa.com/bbb$1 [R=permanent,L]
Viewing 1 replies (of 1 total)
  • The topic ‘forward main site to sub site’ is closed to new replies.