Web サイト ( http://google.comなど) をレンダリングする iframe があります。ただし、リダイレクトする Web サイト ( http://tinyurl.com/l6llqreなど) の場合、現在のブラウザーのウィンドウ全体でリダイレクトが開きます。Web サイトが iframe 内でリダイレクトされるように修正するにはどうすればよいですか??
これが私のiframeです:
public function renderContent() {
if ($this->url) {
return
<iframe
src={$this->url}
width="100%"
height="500px"
scrolling="no"
/>;
} else {
return <ui:box type="red">{'The website cannot be loaded'}</ui:box>;
}
}
PHPで本当に新しいので、ヒントをいただければ幸いです!