Can I redirect the entire domain to another?
I want him to redirect this path:
domain.com/something --> www.domain.eu/something sub.domain.com/folder/file.type --> sub.domain.eu/folder/file.type super.mega.sub.domain.com --> super.mega.sub.domain.eu
(for any subdomain and everything after /.)
I only have access to the com domain.
So far, I have invented this code for the .htaccess file:
RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !^domain.com$ [OR] RewriteCond %{HTTP_HOST} ^domain.com$ [OR] RewriteCond %{HTTP_HOST} ^www.domain.com$ RewriteRule (.*)$ http://www.domain.eu/$1 [R=permanent,L]
But it works like:
sub.domain.com/something --> www.domain.eu/sub/something
So this is wrong. Any help please? Thank you very much.
source share