首页 > 其他 > 详细

Drupal Nginx伪静态设置方法

时间:2014-06-25 17:49:02      阅读:479      评论:0      收藏:0      [点我收藏+]
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伪静态设置方法

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!