php iframe继续在框架内重定向网站

时间:2013-08-23 02:02:49

标签: php iframe

我有一个呈现网站的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,非常感谢任何提示!

0 个答案:

没有答案