var sBrowser, sUsrAg = navigator.userAgent;
if (sUsrAg.indexOf("iPhone") > -1) {
document.location.href = "https://m.site.com"
}
if (screen.width >= 850 && window.location.hostname !== "site.com") {
var urlCustom = window.location.pathname + window.location.search + window.location.hash;
window.location.href = "https://site.com"+urlCustom;
}