White Stormy
Take that, subspace!
I need site1 to redirect to site2 without the URL in the address bar changing from site1's address.
site1 and site2 are on different hosts.
I can change the .htaccess on both.. I just can't figure out how to do this, if it's possible.
I put
into the .htaccess on site1, and that forwards it fine, but it changes the URL in the address bar.
is this possible?
site1 and site2 are on different hosts.
I can change the .htaccess on both.. I just can't figure out how to do this, if it's possible.
I put
Code:
RewriteRule ^(.*)$ http://site2.com/index.php?q=$1 [L,QSA]
into the .htaccess on site1, and that forwards it fine, but it changes the URL in the address bar.
is this possible?