Update redirect.js

This commit is contained in:
FURK4NGG
2025-05-17 10:53:58 +03:00
committed by GitHub
parent e6a25e06c1
commit d36d4ccb8a
+2 -2
View File
@@ -3,8 +3,8 @@ document.addEventListener('DOMContentLoaded', () => {
// İçeriği dil tercihine göre yönlendirme
if (userLang.startsWith('tr')) {
window.location.href = '/home_tr'; // Türkçe içerik
window.location.href = 'https://furk4ngg.me'; // Türkçe içerik
} else {
window.location.href = '/home_en'; // İngilizce içerik
window.location.href = 'https://furk4ngg.me'; // İngilizce içerik
}
});