document.addEventListener("DOMContentLoaded", function() {
var userAgent = navigator.userAgent || navigator.vendor || window.opera;
if (/android/i.test(userAgent)) {
// Android cihazları için yönlendirme
window.location.href = "https://mobile.example.com";
} else if (/iPad|iPhone|iPod/.test(userAgent) && !window.MSStream) {
// iOS cihazları için yönlendirme
window.location.href = "https://mobile.example.com";
}
});