-
Üyelik
02.09.2015
-
Yaş/Cinsiyet
34 / E
-
Meslek
search
-
Konum
Gaziantep
-
Ad Soyad
M** K**
-
Mesajlar
882
-
Beğeniler
52 / 237
-
Ticaret
4, (%100)
Merhaba arkadaşlar bir javascript kodum mevcut şimdi Türkiyeden girenleri google.com'a yönlendirsin diğer ülkelerden girenleri ise youtube.com'a yönlendirsin istiyorum nasıl yapabilirim acaba kod şu;
fetch('https://freegeoip.app/json/')
.then(function(response) {
return response.json();
})
.then(function(data) {
if(data.country_code == 'TR') {
// yönlendirilecek site url.
window.location.replace("http://google.com");
}
})
-
Üyelik
08.01.2020
-
Yaş/Cinsiyet
27 / E
-
Meslek
Öğrenci
-
Konum
Trabzon
-
Ad Soyad
G** Y**
-
Mesajlar
73
-
Beğeniler
2 / 25
-
Ticaret
1, (%100)
fetch('https://freegeoip.app/json/')
.then(function(response) {
return response.json();
})
.then(function(data) {
if(data.country_code == 'TR') {
window.location.replace("http://google.com");
}
else{
window.location.replace("https://www.youtube.com");
}
})
bu siteyi adblocklar engelliyor bilginiz olsun