<?php
$userAgent = $_SERVER['HTTP_USER_AGENT'];
if (stripos($userAgent, 'Android') !== false) {
$androidPackage = "com.fatihanily.app"; // uygulamanızın paket adı
$playStoreUrl = "https://play.google.com/store/apps/details?id=" . $androidPackage; //uygulamanızın playstore linki
header("Location: " . $playStoreUrl);
exit();
}
else if (stripos($userAgent, 'iPhone') !== false || stripos($userAgent, 'iPad') !== false || stripos($userAgent, 'iPod') !== false) {
$iosAppUrl = "https://apps.apple.com/app/id//uygulamanızın ios linki";
header("Location: " . $iosAppUrl);
exit();
}
?>