use this script on your web page which detect mobile and transfer to play store ,itune store or windows store
<script type="text/javascript" language="javascript">
var isMobile = {
Android: function () {
return /Android/i.test(navigator.userAgent);
},
BlackBerry: function () {
return /BlackBerry/i.test(navigator.userAgent);
},
iOS: function () {
return /iPhone|iPad|iPod/i.test(navigator.userAgent);
},
Windows: function () {
return /IEMobile/i.test(navigator.userAgent);
},
any: function () {
return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Windows());
}
};
if (isMobile.Windows()) {
window.location = "Windows App Url";
}
else if (isMobile.iOS()) {
window.location = "itune store url";
}
else if (isMobile.Android()) {
window.location = "play store url";
}
</script>