Web学習手帳 To Know To Think To Love
 ここはWEB学習用で、制作の実験と備忘録に使っています。公開ブログは、"人生は恐れを知らぬ冒険か無か"(http://home.elmblog.com/)です。 ≪管理人用≫以下の内容やリンク先は、管理人が学習と試作に使っており予告なしに変更されます。

« Date 日付の設定 | MAIN | Document »

指定URL以外からのリンク拒否

http://example.com/からしかリンクできないようにする。
リンク先につぎのスクリプトを書く。
<script language="JavaScript">
x = document.referrer;
y = "http://example.com/";
if (x!=y) {
window.location= "ng.html";
}
</script>

Post a comment

(If you haven't left a comment here before, you may need to be approved by the site owner before your comment will appear. Until then, it won't appear on the entry. Thanks for waiting.)