[关闭]
@a5635268 2015-09-26T14:48:58.000000Z 字数 4846 阅读 1540

【nginx运维基础(7)】常用PHP开源程序的NginxRewrite示例

Nginx


在写伪静态的时候,可以先用一个打印$_GET的PHP文件来测试,并且一定注意浏览器缓存

dedecms

  1. location / {
  2. rewrite "^/index.html$" /index.php last;
  3. rewrite "^/list-([0-9]+)\.html$" /plus/list.php?tid=$1 last;
  4. rewrite "^/list-([0-9]+)-([0-9]+)-([0-9]+)\.html$" /plus/list.php?tid=$1&totalresult=$2&PageNo=$3 last;
  5. rewrite "^/view-([0-9]+)-1\.html$" /plus/view.php?arcID=$1 last;
  6. rewrite "^/view-([0-9]+)-([0-9]+)\.html$" /plus/view.php?aid=$1&pageno=$2 last;
  7. rewrite "^/tags.html$" /tags.php last;
  8. rewrite "^/tag-([0-9]+)-([0-9]+)\.html$" /tags.php?/$1/$2/ last;
  9. break;
  10. }

discuz

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

discuzx

  1. location / {
  2. rewrite ^([^\.]*)/topic-(.+)\.html$ $1/portal.php?mod=topic&topic=$2 last;
  3. rewrite ^([^\.]*)/article-([0-9]+)-([0-9]+)\.html$ $1/portal.php?mod=view&aid=$2&page=$3 last;
  4. rewrite ^([^\.]*)/forum-(\w+)-([0-9]+)\.html$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3 last;
  5. rewrite ^([^\.]*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=viewthread&tid=$2&extra=page%3D$4&page=$3 last;
  6. rewrite ^([^\.]*)/group-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=group&fid=$2&page=$3 last;
  7. rewrite ^([^\.]*)/space-(username|uid)-(.+)\.html$ $1/home.php?mod=space&$2=$3 last;
  8. rewrite ^([^\.]*)/blog-([0-9]+)-([0-9]+)\.html$ $1/home.php?mod=space&uid=$2&do=blog&id=$3 last;
  9. rewrite ^([^\.]*)/(fid|tid)-([0-9]+)\.html$ $1/index.php?action=$2&value=$3 last;
  10. rewrite ^([^\.]*)/([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html$ $1/plugin.php?id=$2:$3 last;
  11. if (!-e $request_filename) {
  12. return 404;
  13. }
  14. }

drupal

  1. if (!-e $request_filename) {
  2. rewrite ^/(.*)$ /index.php?q=$1 last;
  3. }

ecshop

  1. if (!-e $request_filename){
  2. rewrite "^/index\.html" /index.php last;
  3. rewrite "^/category$" /index.php last;
  4. rewrite "^/feed-c([0-9]+)\.xml$" /feed.php?cat=$1 last;
  5. rewrite "^/feed-b([0-9]+)\.xml$" /feed.php?brand=$1 last;
  6. rewrite "^/feed\.xml$" /feed.php last;
  7. rewrite "^/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$" /category.php?id=$1&brand=$2&price_min=$3&price_max=$4&filter_attr=$5&page=$6&sort=$7&order=$8 last;
  8. rewrite "^/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)(.*)\.html$" /category.php?id=$1&brand=$2&price_min=$3&price_max=$4&filter_attr=$5 last;
  9. rewrite "^/category-([0-9]+)-b([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$" /category.php?id=$1&brand=$2&page=$3&sort=$4&order=$5 last;
  10. rewrite "^/category-([0-9]+)-b([0-9]+)-([0-9]+)(.*)\.html$" /category.php?id=$1&brand=$2&page=$3 last;
  11. rewrite "^/category-([0-9]+)-b([0-9]+)(.*)\.html$" /category.php?id=$1&brand=$2 last;
  12. rewrite "^/category-([0-9]+)(.*)\.html$" /category.php?id=$1 last;
  13. rewrite "^/goods-([0-9]+)(.*)\.html" /goods.php?id=$1 last;
  14. rewrite "^/article_cat-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$" /article_cat.php?id=$1&page=$2&sort=$3&order=$4 last;
  15. rewrite "^/article_cat-([0-9]+)-([0-9]+)(.*)\.html$" /article_cat.php?id=$1&page=$2 last;
  16. rewrite "^/article_cat-([0-9]+)(.*)\.html$" /article_cat.php?id=$1 last;
  17. rewrite "^/article-([0-9]+)(.*)\.html$" /article.php?id=$1 last;
  18. rewrite "^/brand-([0-9]+)-c([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)\.html" /brand.php?id=$1&cat=$2&page=$3&sort=$4&order=$5 last;
  19. rewrite "^/brand-([0-9]+)-c([0-9]+)-([0-9]+)(.*)\.html" /brand.php?id=$1&cat=$2&page=$3 last;
  20. rewrite "^/brand-([0-9]+)-c([0-9]+)(.*)\.html" /brand.php?id=$1&cat=$2 last;
  21. rewrite "^/brand-([0-9]+)(.*)\.html" /brand.php?id=$1 last;
  22. rewrite "^/tag-(.*)\.html" /search.php?keywords=$1 last;
  23. rewrite "^/snatch-([0-9]+)\.html$" /snatch.php?id=$1 last;
  24. rewrite "^/group_buy-([0-9]+)\.html$" /group_buy.php?act=view&id=$1 last;
  25. rewrite "^/auction-([0-9]+)\.html$" /auction.php?act=view&id=$1 last;
  26. rewrite "^/exchange-id([0-9]+)(.*)\.html$" /exchange.php?id=$1&act=view last;
  27. rewrite "^/exchange-([0-9]+)-min([0-9]+)-max([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$" /exchange.php?cat_id=$1&integral_min=$2&integral_max=$3&page=$4&sort=$5&order=$6 last;
  28. rewrite ^/exchange-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$" /exchange.php?cat_id=$1&page=$2&sort=$3&order=$4 last;
  29. rewrite "^/exchange-([0-9]+)-([0-9]+)(.*)\.html$" /exchange.php?cat_id=$1&page=$2 last;
  30. rewrite "^/exchange-([0-9]+)(.*)\.html$" /exchange.php?cat_id=$1 last;
  31. }

phpwind

  1. location / {
  2. rewrite ^(.*)-htm-(.*)$ $1.php?$2 last;
  3. rewrite ^(.*)/simple/([a-z0-9\_]+\.html)$ $1/simple/index.php?$2 last;
  4. }

wordpress

  1. location / {
  2. try_files $uri $uri/ /index.php?$args;
  3. }
  4. # Add trailing slash to */wp-admin requests.
  5. rewrite /wp-admin$ $scheme://$host$uri/ permanent;

spf

  1. location / {
  2. rewrite "^/list-([0-9]+)-?([0-9]*)\.html$" /index.php?a=lists&catid=$1&page=$2 last;
  3. rewrite "^/shows_([0-9]+)_?([0-9]*)\.html$" /index.php?a=shows&catid=$1&id=$2 last;
  4. if (-f $request_filename) {
  5. expires max;
  6. break;
  7. }
  8. if (!-e $request_filename) {
  9. rewrite ^/(.*)$ /index.php/$1 last;
  10. }
  11. }
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注