»Forumlar »D?k?manlar »Tarayıcı Kontrol (Yasaklama Engelleme) Scriptleri
  https://seditio.com.tr/eski1/forums.php?m=posts&q=1957
          Geri Dön      -      Sayfayı Yazdırmak için tıklayın
Author: Kaan, Posted: 2012-06-03 17:05 GMT.
?stemedi?iniz Taray?c?lar? Sitenizden uzak tutman?z i?in haz?rlanm?? basit 2 tane kod vard?r.

Birincisi IE isteyen, ikincisi IE istemeyen.
Ad?ndan da anlad???n?z gibi birincisi sayesinde IE d???ndakilere, ikincisi sayesinde ise IE'ye duvar koyuyorsunuz.

?lk ?nce IE yi Yasakl?yal?m sitemizden.

Alttaki kodu Sitenizde <head>...</head> aras?na ekleyiniz.
Kod:
<script type="text/javascript">
function tarayici_kontrol(){
if(navigator.appName.indexOf("Explorer")>= 0){
window.location.href="hata.html"
}
}
</script>

<body> tag?n? ?u ?ekilde de?i?tirin.
Kod:
<BODY onLoad="tarayici_kontrol()">

?imdi bir hata sayfas? yapal?m ve sitenizin ana dizinine at?n.

hata.html
Kod:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title> Buraya Internet Explorer Kullananlar giremez!!! </title>
  <meta http-equiv="content-type" content="text/html; charset=utf-8">
<style type="text/css">
h1{
font-size:18px;
font-family: Georgia, Helvetica;
color:#666;
text-decoration:none;
font-weight:bold;
}
div#yazi{
margin:0 auto;
width:400px;
text-align:center;
position:absolute;
top:100px;
left:190px;
}
</style>
</head>
<body>
<div id="yazi"><h1>?u an Internet Explorer kullanmaktas?n?z. L?tfen ba?ka bir taray?c? ile giriniz.</h1></div>
<br /><br /><br />
<div><h1>Mozilla Firefox ?ndir: <a href="http://www.mozilla.org/tr/firefox/new/"> TIKLA ?ND?R</a></h1></div>
<br /><br /><br />
<div><h1>Google Chrome ?ndir: <a href="https://www.google.com/chrome?hl=tr"> TIKLA ?ND?R</a></h1></div>
</body>
</html>


?imdi IE D???ndakileri yasaklayal?m

Alttaki kodu Sitenizde <head>...</head> aras?na ekleyiniz.
Kod:
<script type="text/javascript">
function tarayici_kontrol(){
if(navigator.appName.indexOf('Explorer')==-1){
window.location.href="hata.html"
}
}
</script>

<body> tag?n? ?u ?ekilde de?i?tirin.
Kod:
<BODY onLoad="tarayici_kontrol()">

?imdi bir hata sayfas? yapal?m ve sitenizin ana dizinine at?n.

hata.html
Kod:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title> IE KULLAN! </title>
  <meta http-equiv="content-type" content="text/html; charset=utf-8">
<style type="text/css">
h1{
font-size:18px;
font-family: Georgia, Helvetica;
color:#666;
text-decoration:none;
font-weight:bold;
}
div#yazi{
margin:0 auto;
width:400px;
text-align:center;
position:absolute;
top:100px;
left:190px;
}
</style>
</head>
<body>
<div id="yazi"><h1>?u an Internet Explorer KULLANMAMAKTASINIZ. <br /> <br /> Internet Explorer KULLAN.</h1></div>
</body>
</html>

Powered by SeditioPrint version