我目前有一个网站,它使用iframe将html加载到页面中心,同时保持标题和菜单静态。
有没有办法用PHP做到这一点,还是我只是在网站的每个页面重用标题的代码?
答案 0 :(得分:2)
的.htaccess
RewriteEngine on
RewriteRule ^(.*html)$ index.php?page=$1 [QSA,L]
的index.php
<?
if (empty($_GET['page'])) $_GET['page']="index.html";
$PAGE = basename($_GET['page']);
if (!is_readable($PAGE)) {
header("HTTP/1.0 404 Not Found");
$PAGE = "404.html";
}
include("template.html");
?>
template.html
<html>
<table>
<tr>
<td width=200>
<a href = "/">Main</a><br>
<a href = "photo.html">Photos</a><br>
</td>
<td width=600>
<? include $PAGE ?>
</td>
</tr>
<table>
</html>
404.html
Sorry, page not found