int. explorer redirect

panathon

New Member
Messages
2
Reaction score
0
Points
0
need to know how to redirect from my site if a person is viewing in explorer. Site works perfect on pc or mac except when bloody microsoft are part of the equation!, does anyone have some javascript code that wil sort this (not a good programmer myself)

Thanks, Anne
 

Slothie

New Member
Messages
1,429
Reaction score
0
Points
0
You can redirect this in PHP if you want.

PHP:
if  (stristr($_SERVER['HTTP_USER_AGENT'],'Microsoft'!=false)) {
header('location: http://www.google.com');
}
 
Top