Using the else operator, as in the above answers, leads to an infinite loop if it is used for index.html (i.e. the page to which the user lands by default)
To easily redirect page page to mobile page
In the <head> your index.html:
<script> if (screen.width <= 1024) { window.location.replace("http://www.yourMobilePage.html"); } </script>
Ben kremer
source share