Question

Themans

How can i redirect mobile users?

Asked by Themans 8 months ago redirect mobile user

Answers

Heri Setiawan
2

Best Answer

Best Answer

 
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 8 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 8 months ago

Answer this question

How can i redirect mobile users?

0 errors found:

 
0