How to redirect website to its mobile version ?

yoyo33

Regular Member
Joined
Jan 29, 2011
Messages
268
Reaction score
49
I search a way to redirect website to it's mobile version.
It's a simple website html / php / no database. I just want to manually create it's mobile version and upload it to something like m.website.com

I want this method to be compatible with the google test (to ensure it's ok for the 21 april change)

I have found this script, but i'm not sure it's the right thing to do....

Code:
<script type="text/javascript">
  <!--
  if (screen.width <= 800) {
    window.location = "http://m.domain.com";
  }
  //-->
</script>

Any ideas?
 
The javascript that you have will do just fine. I have the same thing on my website (which passes Google's mobile test, thank you very much) and it works just great!
 
@OP: you can easily do this via Cloudflare. It has feature to detect mobile devices and redirect to your mobile friendly design.
 
Back
Top