PHP僞靜態寫法--其一php
僞靜態又名:URL重寫 html
主要是爲了SEO而生的。(SEO是什麼?這個不用問我吧。呵呵~搞網絡的不懂SEO那就~~~~)apache
方法一:服務器
好比這個網頁網絡
/soft.php/1,100,8630.html負載均衡
其實處理的腳本是soft.php 參數爲1,100,8630post
至關於soft.php?a=1&b=1=100&c=8630 只不過這樣的URL太難記。搜索引擎也不喜歡。網站
真靜態只是徹底生成了HTML。搜索引擎
客戶端訪問的時候直接輸出。不用腳本解釋。在流量很是大的時候(好比天天有上百萬的訪問量的時候)會起到很好的效果。也就是說服務器端實實在在的存在這個HTML頁面。url
固然在你網站的流量沒有那麼大的時候。URL重寫是最好的方法(我的觀點,大流量的時候能夠考慮負載均衡了。一樣沒有關係)
附URL重寫的方法有不少種,APACHE,IISREWRITE。甚至PHP腳本均可以直接處理。好比上例中就是PHP腳本直接處理(該方法好處是大流量的時候直接減輕WEB伺服器的壓力。PS:一樣也是我的觀點:
================================================
下面以程序爲例講一下PHP僞靜態的程序實現方法,其實這方法我以前已經有在其它論壇社區發過
程序爲例:
/soft.php/1,100,8630.html
CODE:
//利用server變量 取得PATH_INFO信息 該例中爲 /1,100,8630.html 也就是執行腳本名後面的部分
if(@$path_info =$_SERVER["PATH_INFO"]){
//正則匹配一下參數
if(preg_match("/\/(\d+),(\d+),(\d+)\.html/si",$path_info,$arr_path)){
$gid =intval($arr_path[1]); //取得值 1
$sid =intval($arr_path[2]); //取得值100
$softid =intval($arr_path[3]); //取得值8630
}else die("Path:Error!");
//至關於soft.php?gid=1&sid=100&softid=8630
//就是這麼簡單了。~)
方法二:
一 打開 Apache 的配置文件 httpd.conf 。
二 將#LoadModule rewrite_module modules/mod_rewrite前面的#去掉
三 在 httpd.conf中添加:
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteCond %{ENV:SCRIPT_URL} (?:index|dispbbs)[-0-9]+.html
RewriteRule ^(.*?(?:index|dispbbs))-([-0-9]+).html 1.php?__is_apache_rewrite=1&__rewrite_arg=2
</IfModule>
四 要實現asp帖子URL到php帖子的映射,在 第三步的<IfModule mod_rewrite.c>和</IfModule>之間添加:
RewriteMap tolowercase int:tolower
RewriteCond %{QUERY_STRING} (?:boardid|page|id|replyid|star|skin)=d+ [NC]
RewriteRule ^(.*(?:index|dispbbs)).asp 1.php?{tolowercase:%{QUERY_STRING}}&__is_apache_rewrite=1
五 保存httpd.conf並重啓Apache
方法三:
<?php
/*
功能:PHP僞靜態化頁面的實現
具體用法:
例如連接爲:test.php/year/2006/action/_add.html
mod_rewrite();
$yearn=$_GET["year"];//結果爲'2006'
$action=$_GET["action"];//結果爲'_add'
*/
function mod_rewrite(){
global $_GET;
$nav=$_SERVER["REQUEST_URI"];
$script_name=$_SERVER["SCRIPT_NAME"];
$nav=substr(ereg_replace("^$script_name","",urldecode($nav)),1);
$nav=preg_replace("/^.ht(m){1}(l){0,1}$/","",$nav);//這句是去掉尾部的.html或.htm
$vars = explode("/",$nav);
for($i=0;$i<Count($vars);$i+=2){
$_GET["$vars[$i]"]=$vars[$i+1];
}
return $_GET;
}
mod_rewrite();
$yearn=$_GET["year"];//結果爲'2006'
$action=$_GET["action"];//結果爲'_add'
echo $yearn;
echo $action;
?>
<?php
/*
功能:PHP僞靜態化頁面的實現
具體用法:
例如連接爲:test.php/year/2006/action/_add.html
mod_rewrite();
$yearn=$_GET["year"];//結果爲'2006'
$action=$_GET["action"];//結果爲'_add'
*/function mod_rewrite(){global $_GET;$nav=$_SERVER["REQUEST_URI"];$script_name=$_SERVER["SCRIPT_NAME"];$nav=substr(ereg_replace("^$script_name","",urldecode($nav)),1);$nav=preg_replace("/^.ht(m){1}(l){0,1}$/","",$nav);//這句是去掉尾部的.html或.htm$vars = explode("/",$nav);for($i=0;$i<Count($vars);$i+=2){$_GET["$vars[$i]"]=$vars[$i+1];}return $_GET;}mod_rewrite();$yearn=$_GET["year"];//結果爲'2006'$action=$_GET["action"];//結果爲'_add'echo $yearn;echo $action;?>