私はウェブサイトを持っていますmydomain.com
私が欲しい、
ビジター mydomain.com が images.google.com から来ている場合は、
otherdomain.com/file1.js
訪問者が別のドメインから来た場合は、
otherdomain.com/file2.js
これを行うには、ドメインでどのような種類のスクリプトを使用すればよいですか? mydomain.com
私はウェブサイトを持っていますmydomain.com
私が欲しい、
ビジター mydomain.com が images.google.com から来ている場合は、otherdomain.com/file1.js
訪問者が別のドメインから来た場合は、otherdomain.com/file2.js
これを行うには、ドメインでどのような種類のスクリプトを使用すればよいですか? mydomain.com
あなたが持っている唯一のオプションは使用することdocument.referrer
です; しかし、それは信頼できるものでも信頼できるものでもありません。
利用可能な場合document.referrer
は、come-from URI を文字列として提供します。利用できない場合は空になります ( ""
)。
<script>
if (document.referrer.indexOf('http://images.google.com/') === 0) {
document.write('<script src="http://otherdomain.com/file1.js"><\/script>');
} else {
document.write('<script src="http://otherdomain.com/file2.js"><\/script>');
}
</script>