drupal-with-nginx icon indicating copy to clipboard operation
drupal-with-nginx copied to clipboard

Hi, how the clean_url working with this

Open nathan-zhu opened this issue 10 years ago • 1 comments
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 avatar Mar 28 '15 09:03 nathan-zhu

@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;
}

mralexho avatar Sep 21 '16 16:09 mralexho