function redirectToStore() {
$userAgent = $_SERVER[‘HTTP_USER_AGENT’];
if (preg_match(‘/android/i’, $userAgent)) {
// Android için Play Store linki
header(‘Location: https://play.google.com/store/apps/details?id=com.kyosointeractive.myac2’);
exit;
} else if (preg_match(‘/iPad|iPhone|iPod/i’, $userAgent) && !strpos($userAgent, ‘MSStream’)) {
// iOS için App Store linki
header(‘Location: https://apps.apple.com/tr/app/my-arcade-center-v2/id6503872496’);
exit;
} else {
// Diğer platformlar için alternatif bir sayfaya yönlendirme veya mesaj gösterme
header(‘Location: https://www.gamesmrkt.com/#games’);
exit;
}
}
// Yönlendirme işlemini çağırma
redirectToStore();
function redirectToStore() {
var userAgent = navigator.userAgent || navigator.vendor || window.opera;
if (/android/i.test(userAgent)) {
// Android için Play Store linki
window.location.href = ‘https://play.google.com/store/apps/details?id=com.kyosointeractive.myac2’;
} else if (/iPad|iPhone|iPod/i.test(userAgent) && !window.MSStream) {
// iOS için App Store linki
window.location.href = ‘https://apps.apple.com/tr/app/my-arcade-center-v2/id6503872496’;
} else {
// Diğer platformlar için alternatif bir sayfaya yönlendirme veya mesaj gösterme
window.location.href = ‘https://www.gamesmrkt.com/#games’;
}
}
//Kodu çaluşturmak için;
redirectToStore();