0

我正在做一个 DNN (asp .net) 网站,该网站预计将作为子域网站运行到在 PHP 上运行的父网站。为了用一个例子来解释它,我正在构建 subdomain.example.com,它是使用 asp .net 技术(DotNetNuke)构建的,example.com 在 PHP 上运行(我猜是 wordpress)。

我必须将标题(横幅部分http://example.com/header_section_only)和页脚(站点地图http://example.com/footer_section_only)从父网站(example.com)嵌入到子域网站(子域.example.com)。由于横幅广告本质上是动态的,因此标题页的高度可能会随着日常偏差而变化。

我曾建议使用 IFrame 但页面大小可变会产生很多问题,是否有其他解决方案?任何人都可以建议我其他选择吗?

4

1 回答 1

0

你可以这样使用:

在您的index.php或主文件中,您可以包含header_section_only以下内容:

<body>
<?php
    echo file_get_contents("http://example.com/header_section_only");
?>
<!-- Body Contents -->
<?php
    echo file_get_contents("http://example.com/footer_section_only");
?>
</body>

如果文件相对存在:

<body>
<?php
    include ("header.inc");
?>
<!-- Body Contents -->
<?php
    include ("footer.inc");
?>
</body>
于 2013-01-04T05:55:29.240 回答