Themans

How can i redirect mobile users?

Asked by Themans 2 years ago redirect mobile user


Heri Setiawan
2

Most Helpful

Most Helpful

 
Hi joel. That's nice trick. But i recommend to use this PHP mobile detection, as it can be used to detect any mobile platform, like Windows Mobile, Blackberry, Opera Mini, Android, Iphone, etc.

Found it here, and official site here

by Heri Setiawan 2 years ago

unregistered
0
 
Hello

Thanks for sharing, what about contact form with captcha ?

Any idea ?

RegardsAkshaya

by unregistered 9 months ago

unregistered
0
 
Doesn't work

by unregistered 12 months ago

Joel Reyes
0
 
If you're looking to redirect users that visit your site on a mobile platform then you can embed this within your html file. It's a very simple JavaSript code.

<script type="text/javascript">
<!--
if (screen.width <= 699) {
document.location = "mobilevs.php";
}
//-->
</script>

All you have to do is simple replace the mobilevs.php with the location of your sites mobile version.

by Joel Reyes 2 years ago

Answer this question

How can i redirect mobile users?

0 errors found:

 
0