我是第一个承认在PHP编码时我是绿色的人。多年前,一位同事给了我一个用于加入PHP和HTML来创建网页的模式。现在,我正在寻找改造网站,但我想知道是否有更好的方法来编写它?目前,我有一个index.php页面,其布局类似于:
<?php
if (! isset($HTTP_GET_VARS['content']) || ! $HTTP_GET_VARS['content']){
$content="home";
}
else
$content=$HTTP_GET_VARS['content'];
//1
if ($content == "home"){
$page_title="Page Title";
$keywords="Keywords found in Meta";
$desc="Description found in Meta";
$style="scripts/style.css";
$popupjs="none";
$storbutnjs="none";
$retreatjs="none";
$rolloverjs="scripts/rolloverjs.js";
$readform_chkjs="none";
$logo="req-files/logo.html";
$sidebar="req-files/sidebar.html";
$main="home.html";
}
//2
if ($content == "about"){
$page_title="Page Title";
$keywords="Keywords found in Meta";
$desc="Description found in Meta";
$style="scripts/style.css";
$popupjs="none";
$storbutnjs="none";
$retreatjs="none";
$rolloverjs="none";
$readform_chkjs="none";
$logo="req-files/logo.html";
$sidebar="req-files/sidebar.html";
$main="about.html";
}
include ("req-files/head.html");
include ($logo);
include ("req-files/navbar.html");
include ($sidebar);
include ($main);
/*include ("scripts/analytics.js");*/
include ("req-files/footer.html");
?>
所以,如果一个人输入http://yourwebsite.com/?content=about
他们会在浏览器中构建完整的关于页面,包含所有必需的元数据,标题,侧栏,页脚,javascript,css,分析等。每个必需的部分都是html文件,有些可能有一些PHP标注的PHP脚本,如页面标题,关键字等。
我的一个问题是当我的客户想要将其中一个'($ content ==“”)'的名称更改为其他内容时。首先,我可以更改变量,但是我必须将旧名称重定向到新名称,以便我们不会丢失页面排名。
例如,http://yourwebsite.com/?content=about
需要重定向到http://yourwebsite.com/?content=about-us
。
最终,客户端会将所有或大多数网页重定向为更直接的http://yourwebsite.com/about-us
。据信,当网站变成WordPress网站时,这将使重建更顺利。
那么,有没有更好的方法来写这个?有没有更好的方法来重定向网址?
谢谢...
答案 0 :(得分:0)
$ HTTP_GET_VARS已弃用。请尝试从官方文档中学习PHP。
要回答您的问题,另一个常用的系统是这样的:
文件:include.php
<?php
function topbanner($title) { ?>
<!doctype html>
<html>
<head>
<title><?php echo $title; ?></title>
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<header>
Site name, Logo, etc.
<header>
<?php }
function footer() { ?>
<footer>
©2012. Your company name. Best viewed in Mozilla Firefox.
</footer>
</body>
</html>
<?php }
现在,像往常一样创建html页面,但要确保扩展名为.php。在这些页面中,执行此操作。
<?php require_once('include.php'); topbanner("Title of this page"); ?>
<h3>Welcome to this site</h3>
<p>Content content content</p>
<img src="image.jpg" />
<?php footer(); ?>
这适用于简单的页面。如果您需要更复杂的设置,请遵循fork-cms的样式以使用.htacess重定向页面。无论哪种方式,页面都被重命名意味着它们会丢失索引。为什么需要经常重命名页面?
答案 1 :(得分:0)
http://php.net/manual/de/function.file-get-contents.php 所以你可以在php(var)中包含html网站
$page = file-get-contents('myHTMLSite.html');
和
str_replace('{header}', $header, $page);