《PHP教程:PHP 实现页面静态化的几种方法》要点:
本文介绍了PHP教程:PHP 实现页面静态化的几种方法,希望对您有用。如果有疑问,可以联系我们。
PHP实例1、通过buffer来实现
PHP实例需要用file_put_contents ob_get_clean()等内置函数
PHP实例
ob_start ();
include "filterpost.html";
$mtime = filemtime("./filterpost.html");//在这里可以判断文件是否存在和过期,然后做缓存或者生成静态文件操作
$pageCache = str_replace('submit2','login',ob_get_contents());//将缓存去中的内容替换
ob_end_clean();
echo $mtime;
echo $pageCache;
PHP实例2、通过$_SERVER['PATH_INFO']来实现
PHP实例
echo '<pre>';
print_r($_SERVER);
preg_match('/^\/(\d+)\/(\d+)\.html/',$_SERVER['PATH_INFO'],$arr);
print_r($arr);
PHP实例3、通过Apache配置来实现
PHP实例需要开启rewrite重写模块
通过rewrite来配置vhost
PHP实例
RewriteEngine on
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-d
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-f
RewriteRule ^/detail/([0-9]*).html$ /detail.php?id=$1
PHP实例如果服务器下不存在文件夹及其文件,那么就重写定义到/detail.php
http://localhost/detail/1.html
如果没有detail文件夹下的1.html 那么就重写定义到./detail.php
PHP实例4、通过Nginx配置来实现
PHP实例 在nginx.conf中配置
PHP实例
rewrite ^/detail/(\d+)\.html$ /detail.php?id=$1 last;
PHP实例当然建议大家参考一些比较成熟的cms的方法,对于页面数量不大的话,第一种方法还是不错的.
转载请注明本页网址:
http://www.vephp.com/jiaocheng/444.html