關(guān)鍵字描述:
1 首先需要在后臺(tái)開啟偽靜態(tài)(服務(wù)器必須支持)
2 設(shè)置欄目必須是使用動(dòng)態(tài)頁(yè)
3 添加文檔時(shí)候也是 選擇 高級(jí)參數(shù)--->僅動(dòng)態(tài)瀏覽 (每次都要選擇,如果不選擇會(huì)生成靜態(tài)文件,或者你就修改php文件或者模版)
4 系統(tǒng)自動(dòng)生成的文檔就會(huì)變成 http://www.hbban.cn/plus/view-703-1.html 這樣的格式
5 需要在根目錄下增加一個(gè).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>