quick question:
how do i prevent the url from changing in the address bar?
currently, when i type timmy.bar.com - it goes to but the address bar will continue to show timmy.bar.com.
After clicking on a link though, it will show the full url.
how do i configure it so that the address bar always shows timmy.bar.com?
thanks
My current redirection code
What should i add????
how do i prevent the url from changing in the address bar?
currently, when i type timmy.bar.com - it goes to but the address bar will continue to show timmy.bar.com.
After clicking on a link though, it will show the full url.
how do i configure it so that the address bar always shows timmy.bar.com?
thanks
My current redirection code
Code:
RewriteCond %{HTTP_HOST}!^([URL unfurl="true"]www\.)?(www¦mail¦images)\.domain\.com[/URL]
RewriteCond %{HTTP_HOST} ^(www\.)?([^.]+)\.bar\.com
# ok rewrite now
RewriteRule ^(.*) [URL unfurl="true"]http://www.bar.com/okay/%2/$1[/URL] [P,L]
What should i add????