Rewrite的需求
在用Apache做web服務(wù)器的時(shí)候评肆,有的時(shí)候需要將輸入的URL轉(zhuǎn)換成另一個(gè)URL這種需求。比如用CodeIgniter框架開發(fā)web應(yīng)用的時(shí)候瓜挽,我們?cè)L問的所有路徑都要經(jīng)過index.php,由這個(gè)index.php做統(tǒng)一路由俄占,訪問地址如下:
example.com/index.php/news/article/my_article
這樣的地址實(shí)在是太丑了淆衷,我們想要一個(gè)干凈的地址如下:
example.com/news/article/my_article
這時(shí)你的 Apache 服務(wù)器需要啟用mod_rewrite缸榄,然后簡(jiǎn)單的通過一個(gè) .htaccess 文件再加上一些簡(jiǎn)單的規(guī)則就可以移除URL中的 index.php 了祝拯。下面是這個(gè)文件的一個(gè)例子, 其中使用了 "否定條件" 來排除某些不需要重定向的項(xiàng)目:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
在上面的例子中鹰贵,除已存在的目錄和文件,其他的 HTTP 請(qǐng)求都會(huì)經(jīng)過你的 index.php 文件碉输。也就是說單用戶在地址欄里輸入【example.com/news/article/my_article】的時(shí)候?qū)嶋H上訪問的是【example.com/index.php/news/article/my_article】。
Rewrite使用詳解
1.確認(rèn)Apache是否加載了Rewrite模塊
確認(rèn)配置文件httpd.conf 中是否存有下面的代碼:
Apache1.x
LoadModule rewrite_module libexec/mod_rewrite.so
AddModule mod_rewrite.c
Apache2.x
LoadModule rewrite_module modules/mod_rewrite.so
啟用.htaccess
AllowOverride None 修改為: AllowOverride All
配置Rewrite規(guī)則
Rewrite規(guī)則可以在httpd-vhosts.conf文件和.htacess文件中進(jìn)行配置。在虛擬域名配置文件下配置如下例:
NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot "D:/wamp/www/testphp/"
ServerName php.iyangyi.com
ServerAlias www.pptv.cn #可省略
ServerAdmin stefan321@qq.com #可省略
ErrorLog logs/dev-error.log #可省略
CustomLog logs/dev-access.log common #可省略
ErrorDocument 404 logs/404.html #可省略
<Directory "D:/wamp/www/testphp/">
Options Indexes FollowSymLinks
AllowOverride All
Order Allow,Deny
Allow from all
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</Directory>
</VirtualHost>
如果在.htacess文件下配置闰非,可以具體配置到訪問某個(gè)目錄下URL的重定向規(guī)則峭范。
RewriteCond 與 RewriteRule
學(xué)習(xí)Rewrite只需要重點(diǎn)了解他的三個(gè)核心就可以:RewriteEngine,RewriteCond辆毡,RewriteRule。
RewriteEngine
這個(gè)是rewrite功能的總開關(guān)舶掖,用來開啟是否啟動(dòng)url rewrite
RewriteEngine on
RewriteCond
RewriteCond就是一個(gè)過濾條件尔店,簡(jiǎn)單來說,當(dāng)URL滿足RewriteCond配置的條件的情況嚣州,就會(huì)執(zhí)行RewriteCond下面緊鄰的RewriteRule語句。
RewriteCond的格式如下:
RewriteCond %{待測(cè)試項(xiàng)目} 正則表達(dá)式條件
舉個(gè)例子:
RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} ^Mozilla//5/.0.*
RewriteRule index.php index.m.php
如果設(shè)置上面的匹配規(guī)則情竹,到來的http請(qǐng)求中的HTTP_USER_AGENT匹配【^Mozilla//5/.0.*】正則表達(dá)式的話匀哄,則執(zhí)行下面的RewriteRule,也就是說訪問路徑會(huì)跳轉(zhuǎn)到 index.m.php這個(gè)文件涎嚼。在具體的一些參數(shù),apache的虛擬域名rewrite配置以及.htaccess的使用這篇文章講的更加詳細(xì)贡耽。
調(diào)試
在apache的配置文件中加入下面配置:
#Rewrite Log
RewriteLog logs/rewrite.log #此處可以寫絕對(duì)地址
RewriteLogLevel 3
這樣就可以在Apache的默認(rèn)日志文件中找到rewrite.log觀察apache URL重寫的過程(參考:如何調(diào)試Apache的URL重寫)。