How to redirect Microsoft Edge browser traffic in htaccess?

don chino

Senior Member
Joined
Apr 2, 2011
Messages
890
Reaction score
291
Is there a way to do it separately from other browsers?
 
Last edited:
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]
 
Back
Top