PHP 僞靜態規則寫法RewriteRule-htaccess詳細語法使用

1、正則表達式教程

僞靜態規則寫法RewriteRule-htaccess詳細語法使用教程分享

簡單說下:僞靜態其實是利用PHP把當前地址解析成另一種方法進行訪問網站!要學僞靜態規則的寫法,你必須得懂一點正則,不會不要緊,照着下面的套就行


1、正則表達式教程

有一個經典的教程:
這個教程的確很簡單,看完基本上寫一些簡單的正則就沒有問題了。正則是一個須要長期使用的工具,隔段時間不用會忘記,因此我每次都看一遍這個教程。其實學過以後重要的就是一點內容。

簡單羅列以下:

.換行符之外的全部字符
\w 匹配字母或數字或下劃線或漢字
\s 匹配任意的空白符
\d 匹配數字
\b 匹配單詞的開始或結束
^ 匹配字符串的開始
$ 匹配字符串的結束
* 重複零次或更屢次
+ 重複一次或更屢次
? 重複零次或一次
{n} 重複n次
{n,}重複n次或更屢次
{n,m} 重複n到m次

應用替換時,前面第一個()中匹配的內容後面就用$1引用,第二個()中匹配的就用$2應用……
這個個()裏面的東東叫原子組
分析一下 discuz搜索引擎優化 htaccess 裏面的重寫。

RewriteRule ^forum-([0-9]+)-([0-9]+)\.html$ forumdisplay.php?fid=$1&page=$2

首先加入用戶經過 linuxidc.com/forum-2-3.html 訪問discuz論壇,那麼先經過.htaccess過濾,看看是否須要.htaccess引導一下用戶,若是知足列出的一系列RewriteCond的 條件那麼就進行重寫,

discuz的沒有列出RewriteCond 因此應該所有都進行重寫。
因此開始進行轉寫,
forum-2-3.html 這個正好符合 列出的
^forum-([0-9]+)-([0-9]+)\.html$
正則表達式。而且 $1 爲 2 ,$2爲3 ,

因此代入後面,即 forumdisplay.php?fid=2&page=3 加上前面的RewriteBase 指定的文件目錄,那麼就帶他到制定目錄的forumdisplay.php?fid=2&page=3 。

2、常見的.htaccess應用舉例(部分例子引自四個例子實戰講解.htaccess文件rewrite規則)

4.1 防止盜鏈,若是來得要訪問jpe jpg bmp png結尾的url 用戶不是來自咱們的網站,那麼讓他看一張咱們網站的展現圖片。
RewriteEngine OnRewriteCond %{HTTP_REFERER} !^http://(.+.)?mysite.com/ [NC]RewriteCond %{HTTP_REFERER} !^$RewriteRule .*.(jpe?g|gif|bmp|png)$ /images/nohotlink.jpg [L]

4.2 網站升級的時候,只有特定IP才能訪問,其餘的用戶將看到一個升級頁面
RewriteEngine onRewriteCond %{REQUEST_URI} !/upgrade.html$RewriteCond %{REMOTE_HOST} !^24\.121\.202\.30

RewriteRule $ http://www.linuxidc.com/upgrade.html [R=302,L]

4.3把老的域名轉向新域名
# redirect from old domain to new domainRewriteEngine OnRewriteRule ^(.*)$http://www.yourdomain.com/$1[R=301,L]

3、經常使用示例

php

RewriteEngine On
RewriteRule index.html index.php

好比:http://www.xxx.com/index.html  -> http://www.xxx.com/index.php

RewriteRule ^test([0-9]*).html$ test.php?id=$1

好比:http://www.xxx.com/test8.html  -> http://www.xxx.com/test.php?id=8

RewriteRule ^cat-([0-9]+)-([0-9]+)\.html$ cat.php?id1=$1&id2=$2

好比:http://www.xxx.com/cat-1-3.html -> http://www.xxx.com/cat.php?id1=1&id2=3

RewriteRule ^cat-([a-zA-Z0-9\-]*)-([0-9]+)-([0-9]+)\.html$ cat.php?id0=$1&id1=$2&id2=$3

好比:http://www.xxx.com/cat-zbc2ac-3-5.html -> http://www.xxx.com/cat.php?id0=zbc2ac&id1=3&id2=5

RewriteRule ^cat1-([0-9]+)-([0-9]+)-([0-9]+)\.html$ cat1.php?id1=$1&id2=$2&id3=$3

好比:http://www.xxx.com/cat1-4-3-8.html -> http://www.xxx.com/cat1.php?id1=4&id2=3&id3=8

RewriteRule ^cat([0-9]*)/$ cat.php?id1=$1

好比:http://www.xxx.com/cat5/ -> http://www.xxx.com/cat.php?id1=5

RewriteRule ^catm([0-9]*)/([0-9]*)/$ catm.php?id1=$1&id2=$2

好比:http://www.xxx.com/catm6/3/ -> http://www.xxx.com/catm.php?id1=6&id2=3

 



但願對你們有所幫助!html

相關文章
相關標籤/搜索