html içinde ülke diline göre sayfa yönlendirme koduda bu sanırım
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#800080">
<!--Don't forget to add your FREE HitBOX statistics to your web page. To
do so, click on Online Services\HitBox Statistics...-->
<script>
/*
Copyright Stephen Shellard 2000 (c)
*/
var type=navigator.appName
if (type=="Netscape")
var lang = navigator.language
else
var lang = navigator.userLanguage
//cut down to first 2 chars of country code
var lang = lang.substr(0,2)
// italian
if (lang == "it")
window.location.replace('giris4.html')
// english
if (lang == "en")
window.location.replace('giris4-eng.html')
// french
if (lang == "fr")
window.location.replace('giris4.html')
// german
else if (lang == "de")
window.location.replace('giris4.html')
// turkish
else if (lang == "tr")
window.location.replace('giriss.html')
// spanish (add or remove copies of 2 lines below as needed)
else if (lang == "es")
window.location.replace('giris4.html')
// if none of above (default to English or any other)
else
window.location.replace('giris4.html')
</script>
</BODY>