Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
1.6k views
in Q2A Core by

1 Answer

+1 vote
by

You should have set up your .htaccess file to redirect one to the other so you do not have duplicate content on your site.

Example for redirect.

RewriteEngine On RewriteCond %{HTTP_HOST} !^www\.mt-example\.com$ [NC] RewriteRule ^(.*)$ http://www.mt-example.com/$1 [L,R=301]

...