[linux][code]typecho的rewrite规则for Nginx[伪静态]

2010年9月12日星期日 | | |

typecho在nginx下的rewrite有好多方法,试下来还是这个方便一些!

1  2  3  4  5  6  7  8  9  10  11  12  
location / {          index index.html index.php;          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;          }      }


转自武眉博!参考:http://www.weijingtai.com/2010/03/20/typecho-rewrite-for-nginx/

 

0 评论:


所有文章收集于网络,如果有牵扯到版权问题请与本站站长联系。谢谢合作![email protected]