Nginx rewrite重寫規則例子和注意事項

來源:互聯網
上載者:User
關鍵字 nginx 重寫規則例子

rewrite 重寫規則可以讓網站URL看起來非常簡介,對搜尋引擎友好,有利於給HTTP://www.aliyun.com/zixun/aggregation/8331.html">網站使用者帶來記憶上的方便, 給網站帶來更多流量。

因此編寫網站rewrite規則很重要。 Nginx的rewrite規則非常強大,下面是樓主實際使用過的一些配置最為例子放出來給大家參考。

注意寫到location裡面,否則$request_filename找不對路徑,無效
location / {
root /home/freeworm/www/nginx.com.cn;
index index.php index.html index.htm;
if (!-e $request_filename) {
rewrite ^/pic/(.*)\.png siteimage.php?q=$1 last;
rewrite ^/pic/(.*) /siteimage.php?q=$1 last;
rewrite ^/([^/]*)/(.*)$ /main.php?q=$1&force=$2 last;
rewrite ^/(.*)$ /main.php?q=$1 last;
rewrite ^/$ /main.php last;
break;
}
}

if (!-f $request_filename) {
rewrite ^/[^./]*_([0-9]+)\.html$ /index.php?bookid=$1;
rewrite ^/[^./]*_([0-9]+)$ /index.php?cat=$1;
rewrite ^/[^./]*tag([0-9]+)$ /index.php?tag=$1;
rewrite ^/[^./]*-([0-9]+)-([0-9]+)$ /index.php?cat=$1&page=$2;
rewrite sitemap.xml /sitemap.php;
break;
}

if (!-f $request_filename) {
rewrite ^/pxy_(.*) /proxy/index.php?q=$1;
}

下面是Discuz論壇的Nginx rewrite規則:

rewrite ^/archiver/((fid|tid)-[\w\-]+\.html)$ archiver/index.php?$1;
rewrite ^/forum-([0-9]+)-([0-9]+)\.html$ forumdisplay.php?fid=$1&page=$2;
rewrite ^/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ viewthread.php?tid=$1&extra=page\%3D$3&page=$2;
rewrite ^/space-(username|uid)-(.+)\.html$ space.php?$1=$2;
rewrite ^/tag-(.+)\.html$ tag.php?name=$1;

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

來自 Nginx中文網: HTTP://www.nginx.com.cn/?p=341

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.