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");
}
})