好的问题是。如果我在子域上有一个索引文件,该文件由另一个站点上的内联框架调用。如何将代码添加到子域index.php文件中以查找父域名url。
实施例: 在子域上创建了一个wordpress,但只希望它显示在加载内联框架的页面中。
yourdomain.com/directory /
在此页面上,它有一个内联框架,可以调用此目录。 在目录文件夹中的index.php文件中将执行{如果父级调用目录/然后在内联框架中显示wordpress,否则执行打印或显示请单击此处以定向到可以加载网站的实际页面。}
我想我可以这样做:
$realpage = "yourdoamin.com/directory/";
$currentpage = $_SERVER['REQUEST_URI'];
if($regpage==$currentpage) {
//show wordpress
} else {
//This is where words will have a a href link to direct them to yourdomain.com url
//where inline frame will load the wordpress in the inline frame.
}
记住内联框架为父级的真实页面。
好的,我希望这很清楚,有办法做到这一点。没有测试过这个理论,但可以使用任何理想。感谢。