iframe中的phpmyadmin被重定向

时间:2013-12-23 08:54:03

标签: php html mysql iframe phpmyadmin

我正在尝试将phpmyadmin附加到我网站上的iframe中。 但是,当用户未登录时,浏览器会重定向到完整链接。 只有在用户已登录时,它才会嵌入到iframe中。

  <div class="row">
        <iframe src="http://nypgis.com/phpmyadmin/index.php" height="1000" width="1650" seamless="seamless"></iframe>
  </div>

1 个答案:

答案 0 :(得分:0)

您无法使用iframe访问phpMyAdmin,因为有一个CSRF保护系统:

您可以在phpMyAdmin的登录页面<script src="./js/cross_framing_protection.js" type="text/javascript"></script>

的源代码中看到
var topdomain=top.document.domain;
if(topdomain!=self.document.domain)
{
    alert("Redirecting...");
    top.location.replace(self.document.URL.substring(0,self.document.URL.lastIndexOf("/")+1))
}