Drupal Nginx 의사 정적 설정 방법

1029 단어 drupal
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;
        }
}

좋은 웹페이지 즐겨찾기