Using mobile cms

MaestroFX1

Community Advocate
Community Support
Messages
1,577
Reaction score
60
Points
0
Learn by searching for "user agent" and "redirect".
 

callumacrae

not alex mac
Community Support
Messages
5,257
Reaction score
97
Points
48
PHP:
if (preg_match('/iPad|iPhone|iOS|Opera Mobi|BlackBerry|Android|IEMobile|Symbian/', $_SERVER['HTTP_USER_AGENT']))
{
	header('Location: http://example.com/path/');
}
 

vv.bbcc19

Community Advocate
Community Support
Messages
1,524
Reaction score
92
Points
48
PHP:
if (preg_match('/iPad|iPhone|iOS|Opera Mobi|BlackBerry|Android|IEMobile|Symbian/', $_SERVER['HTTP_USER_AGENT']))
{
	header('Location: http://example.com/path/');
}

Best quick solution.Repped.
 
Top