drupal-with-nginx
drupal-with-nginx copied to clipboard
Hi, how the clean_url working with this
trafficstars
i try to add below in drupal.conf try_files $uri $uri/ @drupal;
then add below at location @drupal; rewrite ^/(.*)$ /index.php?q=$1;
but not working well, can help on it?
@nathan-zhu try adding this snippet above the return 404 block
## Clean URLs
location = /index.php {
include apps/drupal/fastcgi_drupal.conf;
fastcgi_pass drupal_backend;
}