Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
iframeを使用して使用することを計画しているhtmlページがありますが、他の人が私たちのページをiframeとして使用することを望んでいません。しかし、私たちは別のドメインでiframedされるページをホストします。
他のドメインでは取得できないのに対し、ドメインのみがiframeでそのページを取得するように制限するにはどうすればよいですか?
私はこれのためのいくつかのjavascriptまたはjqueryソリューションを探しています。
ドメイン名を確認window.parent.locationします。ドメイン名がない場合は、次のようにブラウザをリダイレクトします。
window.parent.location
if(window.parent.location.indexOf("myDomain") == 0) good; else window.parent.location = "http://myDomain";