Hi Guys! I'm trying to setup a RewriteRule to redirect requests to a new different server , but I want to keep the original URL on address bar. How can I do that?
RewriteEngine on
RewriteLog /var/log/httpd/rewrite.log
RewriteLogLevel 9
RewriteCond %{QUERY_STRING} msg=online
RewriteRule (.*) http://myserver/ [L]
Thanks a lot
A.
