codice:
<script type="text/javascript">
// se mobile
var ismobile=navigator.userAgent.match(/(iPad)|(iPhone)|(iPod)|(android)|(webOS)/i)

			if (ismobile) {
				location.replace('http://URL SITO MOBILE');
			} else {
				location.replace('http://URL SITO PER PC');
			}
		</script>