Drupal Nginx伪静态设置方法

时间:2023-03-10 06:52:07
Drupal Nginx伪静态设置方法
location ~ ^.*/files\/styles\/.*$ {
access_log off;
expires 45d;
error_page @drupal;
} location @drupal {
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?q=$ last;
}
}
# Drupal Rewrite
location / {
root /path/to/drupal;
index index.php index.html;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?q=$ last;
}
}