質問編集履歴
1
例示ドメインに修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
しかし、アナリティクス上でテストトラフィックを送っても、このphpがおかれているページが反応しません。
|
4
4
|
|
5
|
-
ちなみに、これを設置しているのは「http://x
|
5
|
+
ちなみに、これを設置しているのは「http://example.com/download/app」という場所です。
|
6
6
|
|
7
|
-
「http://x
|
7
|
+
「http://example.com」はアナリティクスではちゃんとデータが取れています。
|
8
8
|
|
9
9
|
|
10
10
|
|
@@ -18,17 +18,17 @@
|
|
18
18
|
|
19
19
|
if((strpos($ua,'iPhone')!==false)||(strpos($ua,'iPod')!==false)||(strpos($ua,'iPad')!==false)) {
|
20
20
|
|
21
|
-
header('Location:http://
|
21
|
+
header('Location:http://google.com/');
|
22
22
|
|
23
23
|
exit();
|
24
24
|
|
25
25
|
}else if((strpos($ua,'Android')!==false)){
|
26
26
|
|
27
|
-
header('Location:http://
|
27
|
+
header('Location:http://yahoo.co.jp/');
|
28
28
|
|
29
29
|
}else{
|
30
30
|
|
31
|
-
header('Location:http://
|
31
|
+
header('Location:http://google.co.jp.com/');
|
32
32
|
|
33
33
|
}
|
34
34
|
|
@@ -82,17 +82,17 @@
|
|
82
82
|
|
83
83
|
if((strpos($ua,'iPhone')!==false)||(strpos($ua,'iPod')!==false)||(strpos($ua,'iPad')!==false)) {
|
84
84
|
|
85
|
-
header('Location:http://
|
85
|
+
header('Location:http://google.com/');
|
86
86
|
|
87
87
|
exit();
|
88
88
|
|
89
89
|
}else if((strpos($ua,'Android')!==false)){
|
90
90
|
|
91
|
-
header('Location:http://
|
91
|
+
header('Location:http://yahoo.co.jp/');
|
92
92
|
|
93
93
|
}else{
|
94
94
|
|
95
|
-
header('Location:http://
|
95
|
+
header('Location:http://google.co.jp.com/');
|
96
96
|
|
97
97
|
}
|
98
98
|
|