Centos下讓nginx支持.htaccess文件實現僞靜態的方法!

在Google上搜索的資料不少人都說nginx目前不支持.htaccess文件,我按照nginx的規則試驗了一下,結果發現 nginx是徹底支持.htaccess文件的!
方法以下:
1. 在須要使用.htaccess文件的目錄下新建一個.htaccess文件,
如個人一個Discuz論壇目錄:php

vi /var/www/html/bbs.adocode.com/.htaccesshtml

2. 在裏面輸入規則,我這裏輸入Discuz的僞靜態規則:nginx

# nginx rewrite ruleui

rewrite ^(.*)/archiver/((fid|tid)-[w-]+.html)$ $1/archiver/index.php?$2 last;spa

rewrite ^(.*)/forum-([0-9]+)-([0-9]+).html$ $1/forumdisplay.php?fid=$2&page=$3 last;code

rewrite ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+).html$ $1/viewthread.php?tid=$2&extra=page%3D$4&page=$3 last;server

rewrite ^(.*)/profile-(username|uid)-(.+).html$ $1/viewpro.php?$2=$3 last;htm

rewrite ^(.*)/space-(username|uid)-(.+).html$ $1/space.php?$2=$3 last;get

rewrite ^(.*)/tag-(.+).html$ $1/tag.php?name=$2 last;it

# end nginx rewrite rule

wq保存退出。
3. 修改nginx配置文件:

vi /etc/nginx/nginx.conf
4. 在須要添加僞靜態的虛擬主機的server{}中引入.htaccess文件,

include /var/www/html/bbs.adocode.com/.htaccess
include /var/www/html/bbs.adocode.com/.htaccess;(把這個改爲你.htaccess文件的具體位置)
wq保存退出。
5. 從新加載nginx配置文件:
/etc/init.d/nginx reload
從新打開網頁看看,若是僞靜態正常就證實你的rewrite rule語法是正確的。

重寫規則各類各樣,你們一塊兒交流便可。
相關文章
相關標籤/搜索