Hi,
I’m using latest EE2.1 and MSM-builds.
I want to achieve this:
mydomain.de => mydomain.com/de = german content. So redirection from .de to .com/de with german content
mydomain.com = english content
I’m at EngineHosting.
public_html is mydomain.com and the ee-installation
mydomain-de_html is my german domain.
But how do I setup everything the right way? So that if you typing mydomain.de you’ll be redircet to mydomain.com/de
I have no idea.
But .htacess with
RewriteCond %{HTTP_HOST} ^mydomain.de [NC,OR]
RewriteCond %{HTTP_HOST} ^www.mydomain.de [NC]
RewriteRule ^(.*)$ <a href="http://www.mydomain.com/de">http://www.mydomain.com/de</a> [R=301,L]was a wrong idea.