Redirect Mobile/Desktop User's To Their Own Landing Page

NINJAM0DS

Newbie
Joined
Jan 7, 2018
Messages
4
Reaction score
0
Hello Black Hat World The Names - Tyler AKA "NinjaMods"

Today i'm posting a little php script i use on a friends Tire shop site that redirects users if they are on a desktop or mobile phone to their own landing page.

To begin make sure you already have have the landing page created.

Then Use This Code.

Code:
<script type="text/javascript">
if (screen.width >= 990) {
document.location = "desktop/index.php";
}   

if (screen.width <= 990) {
document.location = "mobile/index.php";
}   
</script>

You may change the location to whatever path suits you.

Make sure to use this meta code for mobile pages to make them fit the screen correctly.

Code:
<meta name="viewport" content="width=device-width, initial-scale=1.0">

If this tutorial has had any help towards you like the post and let me know below.
 
Back
Top