基于php偽靜態的實現詳細介紹_PHP教程

      編輯Tag賺U幣
      教程Tag:暫無Tag,歡迎添加,賺取U幣!

      推薦:php中is_null,empty,isset,unset 的區別詳細介紹
      本篇文章介紹了,php中is_null,empty,isset,unset 的區別詳細分析。需要的朋友參考下

      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

      復制代碼 代碼如下:www.wf0088.com

      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頁面
      復制代碼 代碼如下:www.wf0088.com

      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( $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 就可以這么寫了

      復制代碼 代碼如下:www.wf0088.com

      <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的值了

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

      分享:PHP中最容易忘記的一些知識點總結
      本篇文章總結出了一部分,PHP中最容易忘記的一些知識點。需要的朋友參考下

      來源:模板無憂//所屬分類:PHP教程/更新時間:2013-04-29
      相關PHP教程