yoyo33
Regular Member
- Jan 29, 2011
- 268
- 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....
Any ideas?
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?