diff --git a/index.html b/index.html
index 525b6ec..01b4e9e 100644
--- a/index.html
+++ b/index.html
@@ -17,9 +17,9 @@
document.addEventListener('DOMContentLoaded', () => {
const userLang = navigator.language || navigator.userLanguage;
if (userLang.startsWith('tr')) {
- window.location.replace('hometr.html');
+ window.location.replace('/hometr.html');
} else {
- window.location.replace('home.html');
+ window.location.replace('/home.html');
}
});