<script>
if (navigator.userAgent.indexOf('Mobile') > -1)
location.href = '/mobile.html';
</script>
Lub według wielkości okna użytkownika:
if (screen.width < 600 || screen.height < 200)
location.href = '/mobile.html';
Ale raczej polecam zrobić responsywność w CSS.