htaccess偽靜態例項記錄

2021-06-07 03:39:36 字數 549 閱讀 9508

原始 index.php 偽靜態 index.html

rewriterule ^index\.html$ index.php

原始 news/detail.php?id=2  偽靜態  news/detail_2.html

rewriterule ^news/detail_([0-9])\.html$ news/detail.php?id=$1

原始 index.php?cid=2&id=3  偽靜態 2-3.html

rewriterule ([a-za-z])-([0-9])\.html$ index.php?cid=$1&id=$2

([a-za-z])-([0-9])\.html$是規則,index.php?action=$1&id=$2是要替換的格式,$1代表第乙個括號匹配的值,$2代表第二個,如此類推!!

htaccess偽靜態例項分享

首先配置伺服器啟動重寫模組 開啟 apache 的配置檔案 httpd.conf 將 loadmodule rewrite module modules mod rewrite前面的 去掉。儲存後重啟apache 寫重寫規則 舉例說明,test.php裡的 為 如下 複製 id get id ech...

APMServ 支援 htaccess偽靜態

假如你的apmserv安裝在x盤apmserv5.2.6目錄的話請按以下步驟做。如果沒有設定虛擬主機請如下設定 找到allowoverride none 改成allowoverride options fileinfo 重啟apache服務即可 如果有設定虛擬主機請按以下設定,我是有設定虛擬主機的所...

通過配置 htaccess實現偽靜態

首先讓apache支援.htaccess,如果已經開啟則跳過這一步 用phpinfo 函式,搜尋 mod rewrite 若查詢到則已開啟 1.配置檔案httpd.conf 1 options indexes followsymlinks allowoverride none 改為 options ...