don chino Senior Member Joined Apr 2, 2011 Messages 890 Reaction score 291 Oct 25, 2015 #1 Is there a way to do it separately from other browsers? Last edited: Oct 25, 2015
MrBlue Senior Member Joined Dec 18, 2009 Messages 975 Reaction score 695 Oct 25, 2015 #2 By using the useragent string, the following .htaccess code should redirect all Microsoft Edge browser traffic. Code: RewriteEngine on RewriteCond %{HTTP_USER_AGENT} Edge RewriteRule .* http://example.com/ [R]
By using the useragent string, the following .htaccess code should redirect all Microsoft Edge browser traffic. Code: RewriteEngine on RewriteCond %{HTTP_USER_AGENT} Edge RewriteRule .* http://example.com/ [R]