您好,登錄后才能下訂單哦!
這篇文章給大家介紹在PHP中實(shí)現(xiàn)頁面靜態(tài)化的方法有哪些,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
1、通過buffer來實(shí)現(xiàn)
需要用file_put_contents ob_get_clean()等內(nèi)置函數(shù)
ob_start (); include "filterpost.html"; $mtime = filemtime("./filterpost.html");//在這里可以判斷文件是否存在和過期,然后做緩存或者生成靜態(tài)文件操作 $pageCache = str_replace('submit2','login',ob_get_contents());//將緩存去中的內(nèi)容替換 ob_end_clean(); echo $mtime; echo $pageCache;
2、通過$_SERVER['PATH_INFO']來實(shí)現(xiàn)
echo '<pre>'; print_r($_SERVER); preg_match('/^\/(\d+)\/(\d+)\.html/',$_SERVER['PATH_INFO'],$arr); print_r($arr);
3、通過Apache配置來實(shí)現(xiàn)
需要開啟rewrite重寫模塊
通過rewrite來配置vhost
RewriteEngine on RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-d RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-f RewriteRule ^/detail/([0-9]*).html$ /detail.php?id=$1
如果服務(wù)器下不存在文件夾及其文件,那么就重寫定義到/detail.php
http://localhost/detail/1.html
如果沒有detail文件夾下的1.html 那么就重寫定義到./detail.php
4、通過Nginx配置來實(shí)現(xiàn)
在nginx.conf中配置
rewrite ^/detail/(\d+)\.html$ /detail.php?id=$1 last;
關(guān)于在PHP中實(shí)現(xiàn)頁面靜態(tài)化的方法有哪些就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。