码迷,mamicode.com
首页 > 其他好文 > 详细

Drupal Nginx伪静态设置方法

时间:2014-06-25 17:49:26      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   html   

location ~ ^.*/files\/styles\/.*$ {
        access_log off;
        expires 45d;
        error_page 404 @drupal;
}

location @drupal {
        if (!-e $request_filename) {
        rewrite ^/(.*)$ /index.php?q=$1 last;
        }
}
# Drupal Rewrite
location / {
        root /path/to/drupal;
        index index.php index.html;
        if (!-e $request_filename) {
                rewrite ^(.*)$ /index.php?q=$1 last;
        }
}

 

Drupal Nginx伪静态设置方法,布布扣,bubuko.com

Drupal Nginx伪静态设置方法

标签:style   class   blog   code   color   html   

原文地址:http://www.cnblogs.com/suihui/p/3806045.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!