我有一个呈现网站的iframe(例如http://google.com)。但是对于重定向的网站(如http://tinyurl.com/l6llqre),重定向将在我当前浏览器的整个窗口中打开。如何修复它以便网站将在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,非常感谢任何提示!