PHP 偽靜態規則寫法RewriteRule-htaccess詳細文法使用

來源:互聯網
上載者:User

標籤:http   tee   偽靜態   使用教程   匹配   使用者   入門   lan   page   

一、Regex教程

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

簡單說下:偽靜態實際上是利用PHP把當前位址解析成另外一種方法進行訪問網站!要學偽靜態規則的寫法,你必須得懂一點正則,不會沒關係,照著下面的套就行


一、Regex教程

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

簡單羅列如下:

.分行符號以外的所有字元
\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$
Regex。並且 $1 為 2 ,$2為3 ,

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

二、常見的.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]

三、常用樣本

RewriteEngine On
RewriteRule index.html index.php

比如:http://www.yzzmf.com/index.html  -> http://www.yzzmf.com/index.php

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

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

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

比如:http://www.yzzmf.com/cat-1-3.html -> http://www.yzzmf.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.yzzmf.com/cat-zbc2ac-3-5.html -> http://www.yzzmf.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.yzzmf.com/cat1-4-3-8.html -> http://www.yzzmf.com/cat1.php?id1=4&id2=3&id3=8

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

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

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

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

希望對大家有所協助!

 

轉載原文: http://blog.sina.com.cn/s/blog_7fb6dadd0101ewpn.html

 

PHP 偽靜態規則寫法RewriteRule-htaccess詳細文法使用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.