關鍵字描述:
1 首先需要在后臺開啟偽靜態(tài)(服務器必須支持)
2 設置欄目必須是使用動態(tài)頁
3 添加文檔時候也是 選擇 高級參數--->僅動態(tài)瀏覽 (每次都要選擇,如果不選擇會生成靜態(tài)文件,或者你就修改php文件或者模版)
4 系統自動生成的文檔就會變成 http://www.hbban.cn/plus/view-703-1.html 這樣的格式
5 需要在根目錄下增加一個.htaccess文件。
添加如下:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^list-([0-9] )\.html$ /plus/list.php?tid=$1
RewriteRule plus/view-([0-9] )-1\.html$ /plus/view.php?arcID=$1
RewriteRule plus/list-([0-9] )-([0-9] )-([0-9] )\.html$ /plus/list.php?tid=$1&totalresult=$2&PageNo=$3
</IfModule>