-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
executable file
·39 lines (38 loc) · 1.25 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<script type="text/javascript">
var url = window.location.href;
var idx = url.indexOf('?');
var params = "";
var url
if(idx != -1){
params = url.substr(idx);
url = url.substr(0,idx);
if(url[url.length -1 ] != '/'){
url += "/";
}
}
function browserRedirect() {
var sUserAgent = navigator.userAgent.toLowerCase();
var bIsIpad = sUserAgent.match(/ipad/i) == "ipad";
var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os";
var bIsMidp = sUserAgent.match(/midp/i) == "midp";
var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
var bIsUc = sUserAgent.match(/ucweb/i) == "ucweb";
var bIsAndroid = sUserAgent.match(/android/i) == "android";
var bIsCE = sUserAgent.match(/windows ce/i) == "windows ce";
var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile";
if (bIsIpad || bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM){
window.location.href= url + "web-mobile/" + params;
}
else{
window.location.href= url+ "web-desktop/" + params;
}
}
browserRedirect();
</script>
</body>
</html>