我试图找到一种方法如何将页面放在另一个没有iframe的页面中并且包含页眉和页脚。我已经尝试了iframe但我不喜欢它。这就是布局的样子, 我在这个文件中做了一个页面调用help.php,我在下面包含了以下代码
<?php include("connection.php"); include("header.php"); ?>
<div class="container">
( i want to put this url here support.sitename.com )
</div>
<?php include("footer.php") ?>
它应该像这个sitename.com/help.php 我有另一页support.sitename.com(这个是使用帮助台软件调用HESK
我正在尝试将support.sitename.com添加到sitename.com/help.php但我不想使用iframe我该怎么做
答案 0 :(得分:1)
<?php include("connection.php"); include("header.php"); ?>
<div class="container">
<?php
$html = file_get_contents("http://support.sitename.com");
$html = preg_replace('%href="/(.*?)"%si', 'href="http://support.sitename.com/$1"', $html);
echo $html;
?>
</div>
<?php include("footer.php") ?>