程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> 基於php偽靜態的實現詳細介紹

基於php偽靜態的實現詳細介紹

編輯:PHP綜合

1.根據$_SERVER['PATH_INFO']來操作實現。
   舉個列子比如你的網站的地址是 http://127.0.0.1/show_new.php/look-id-1.shtml
你echo $_SERVER['PATH_INFO'] 出來的結果就會是 /look-id-1.shtml 看到這個我想大家可能已經明白了。
完整的demo
index.php
復制代碼 代碼如下:
index.php

$conn=mysql_connect("localhost","root","root")or dir("連接失敗");
mysql_select_db("tb_demo",$conn);
$sql="select * from news";
$res=mysql_query($sql);
header("content-type:text/html;charset=utf-8");
echo "<h1>新聞列表</h1>";
echo "<a href='add_news.html'>添加新聞</a><hr/>";
echo "<table>";
echo "<tr><td>id</td><td>標題</td><td>查看詳情</td><td>修改新聞</td></tr>";
while($row=mysql_fetch_assoc($res)){
 echo "<tr><td>{$row['id']}</td><td>{$row['title']}</td><td><a href='show_new.php/look-id-{$row['id']}.shtml'>查看詳情</a></td><td><a href='#'>修改頁面</a></td></tr>";
}
//上面的紅色的地址本來該是show_news.php?act=look&id={$row['id']}
echo "</table>";
//關閉資源
mysql_free_result($res);
mysql_close($conn);

show_new.php頁面
復制代碼 代碼如下:
show_new.php

header("Content-type:text/html;charset=utf-8");
$conn=mysql_connect("localhost","root","root");
mysql_select_db("tb_demo",$conn);
mysql_query("set names utf8");
 $pa = $_SERVER['PATH_INFO'];
//$pa  打印出來的值是  /look-id-1.html
//通過正則表達式匹配獲取的url地址
if(preg_match('/^\/(look)-(id)-([\d])\.shtml$/',$pa,$arr)){
 $act = $arr[1]; //這個是請求的look方法
 $id = $arr[3];  //這個是獲取的id 值
 $sql="select * from news  where id= $id";
 $res=mysql_query($sql);
 $res = mysql_fetch_assoc($res);
 echo $res['title']."<hr>".$res['content'];
}else{
 echo "url地址不合法";
}
mysql_close($conn);

看到上面的這個我想大家肯定懂了吧   其實這種方式用的不多的下面的給大家說第二種方法了啊

2.根據配置.htaccess來實現。
  先說下.htaccess文件怎麼創建吧,在網站根目錄下建立個記事本然後雙擊打開點擊另存為 文件名寫成
.htaccess ,保存類型選擇所有文件,編碼選擇utf-8的編碼好的這是你就在目錄看到這個.htaccess文件了

首先在apache 開啟mod_rewrite.so,AllowOverride None  這裡有兩處 替換為 AllowOverride All

比如href 地址寫成 one_new-id-1.shtml //這個意思是one_new.php?id=1
這裡的.htaccess 就可以這麼寫了
復制代碼 代碼如下:
<IfModule rewrite_module>
#寫你的rewrite規則
RewriteEngine On
# 可以配置多個規則,匹配的順序是從上到下
RewriteRule  one_new-id-(\d+)\.shtml$ one_new.php?id=$1 //這裡的$1 代表的是第一個參數啊
RewriteRule  abc_id(\d+)\.html$     error.php
#設置404錯誤
#ErrorDocument  404  /error.php
</IfModule>

你在one_new.php 頁面echo $_GET['id'] 肯定會輸出 id的值了

 說明:這個目前個人能力只能寫到這裡了 我以後會逐漸完善 的
 有問題可以給我留言啊

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved