Nginx服務(wù)器下使用rewrite重寫url以實現(xiàn)偽靜態(tài)的示例
經(jīng)過網(wǎng)上查閱和測試,發(fā)現(xiàn)Nginx的Rewrite規(guī)則和Apache的Rewite規(guī)則差別不是很大,幾乎可以直接使用。比如在Apache中這樣寫規(guī)則
rewrite ^/([0-9]{5}).html$ /viewthread.php?tid=$1 last;
而在Nginx中寫成這樣寫是無法啟動的,解決的辦法是加上兩個雙引號:
rewrite "^/([0-9]{5}).html$" /viewthread.php?tid=$1 last;
同時將RewriteRule為Rewrite,基本就實現(xiàn)了Nginx的Rewrite規(guī)則到Apache的Rewite規(guī)則的轉(zhuǎn)換。
Rewrite的Flags
- last - 基本上都用這個Flag。
- break - 中止Rewirte,不在繼續(xù)匹配
- redirect - 返回臨時重定向的HTTP狀態(tài)302
- permanent - 返回永久重定向的HTTP狀態(tài)301
WordPress的Rewrite
其實在Nginx下配置WordPress的Rewrite還是比較簡單的,在location /{..................}里面加入
if (!-f $request_filename){ rewrite (.*) /index.php; }
即可實現(xiàn)。
下面是一個完整的vhost的配置文件
server { listen 80; server_name ccvita.com www.ccvita.com; location / { index index.html index.htm index.php; root /www/wwwroot/ccvita.com; if (-f $request_filename/index.html){ rewrite (.*) $1/index.html break; } if (-f $request_filename/index.php){ rewrite (.*) $1/index.php; } if (!-f $request_filename){ rewrite (.*) /index.php; } } location ~ \.php$ { include fastcgi_params; fastcgi_index index.php; fastcgi_pass 127.0.0.1:8787; fastcgi_param SCRIPT_FILENAME /www/wwwroot/ccvita.com$fastcgi_script_name; } location /ccvita-status { stub_status on; access_log off; } }
Discuz!的Rewrite
下面的Rewrite中百分號前面多了個轉(zhuǎn)移字符“\”,這在Apache中是需要的,而在Nginx中則是不需要的。
rewrite ^/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /viewthread.php?tid=$1&extra=page\%3D$3&page=$2 last;
正確的應(yīng)該是
rewrite ^/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /viewthread.php?tid=$1&extra=page%3D$3&page=$2 last;
這個錯誤在基本上目前所有使用Nginx作為服務(wù)器,并且開啟了Rewrite的網(wǎng)站上存在。包括Discuz!官方,目前已經(jīng)給cnteacher反饋了。
Nginx實例代碼
server { listen 80; server_name www.ccvita.com ccvita.com; location / { index index.html index.htm index.php; root /www/www.ccvita.com; rewrite ^(.*)/archiver/((fid|tid)-[\w\-]+\.html)$ $1/archiver/index.php?$2 last; rewrite ^(.*)/forum-([0-9]+)-([0-9]+)\.html$ $1/forumdisplay.php?fid=$2&page=$3 last; rewrite ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/viewthread.php?tid=$2&extra=page%3D$4&page=$3 last; rewrite ^(.*)/profile-(username|uid)-(.+)\.html$ $1/viewpro.php?$2=$3 last; rewrite ^(.*)/space-(username|uid)-(.+)\.html$ $1/space.php?$2=$3 last; rewrite ^(.*)/tag-(.+)\.html$ $1/tag.php?name=$2 last; } location ~ \.php$ { include fastcgi_params; fastcgi_index index.php; fastcgi_pass 127.0.0.1:8694; fastcgi_param SCRIPT_FILENAME /www/www.ccvita.com$fastcgi_script_name; } location /www.ccvita.com-status { stub_status on; access_log off; } }
相關(guān)文章
nginx 配置代理服務(wù)地址最后多加反斜杠和不加反斜杠的區(qū)別小結(jié)
在使用Nginx配置代理服務(wù)時,地址最后是否添加反斜杠(/)會對代理的URL處理產(chǎn)生影響,下面就來具體介紹一下,感興趣的可以了解一下2024-08-08為Node.js程序配置使用Nginx服務(wù)器的簡明教程
這篇文章主要介紹了為Node.js程序配置使用Nginx服務(wù)器的簡明教程,Nginx與Node自帶的服務(wù)器一樣都擁有非阻塞的高性能,需要的朋友可以參考下2016-01-01Linux下Nginx負(fù)載均衡多個tomcat配置的方法步驟
這篇文章主要介紹了Linux下Nginx負(fù)載均衡多個tomcat配置的方法步驟,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2019-04-04