i want to redirect a domain to another domain but without change the URL.
For Example:
ADomain.com redirect to BDomain.com/xxx/xxx/xxx/?xxx=xxxx
i was tried some htaccess
RewriteCond %{HTTP_HOST} ^(www\.)?ADomain\.com$ [NC]
RewriteRule ^(.*)$ http://BDomain.com/xxx/xxx/xxx/?xxx=xxx [R,L,NC]
This code was redirect perfectly . But it's change the current browser url (ADomain.com
) to the original link (BDomain.com/xxx/xxx/xxx/?xxx=xxxx
). but i don't need it. i just want to keep the url ADomain.com. please guide me any one. thanks advance