How i can do this, opera and firefox visitors automatically redirect on my subdomain? Example my domain is www.site.com i want when visitor come to my website with opera and firefox, automatically redirect on www.sub.site.com
Thanks
How i can do this, opera and firefox visitors automatically redirect on my subdomain? Example my domain is www.site.com i want when visitor come to my website with opera and firefox, automatically redirect on www.sub.site.com
Thanks
You can do a http_user_agent based redirection using htaccess.
Try the following code in Root/.htaccess :
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.)?mainsite.com$
RewriteCond %{HTTP_USER_AGENT} (opera|firebox) [NC]
RewriteRule ^(.*)$ http://sub.site.com/$1 [NC,L,R]
This will redirect opera or firebox user_agents from mainsite to subdomain.