$host = $_SERVER['HTTP_HOST'];
if($host != 'localhost') {
//javascript kodunu çalıştır
}
yada daha basit yöntemi varsa onuda alabilirm
if localhost ise çalıştırma |
5 Mesajlar | 1.136 Okunma |
$host = $_SERVER['HTTP_HOST'];
if($host != 'localhost') {
//javascript kodunu çalıştır
}
$host = $_SERVER['HTTP_HOST'];
if($host != 'localhost') {?>
<script></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-1408..');
</script>
<script>
var hostisim = window.location.hostname;
if(hostisim == "localhost"){
}else{// Localhost Değil İse
var Script = document.createElement('script');
Script.setAttribute('src','https://www.googletagmanager.com/gtag/js?id=UA-1408..');
document.head.appendChild(Script);
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-1408..');
}
</script>
if (location.hostname === "localhost" || location.hostname === "127.0.0.1"){
// bu localhost
} else {
// sunucudayız
}