Hi,

I got an e-mail today from our web host that they are going to Nginx and getting rid of htaccess.
They say

"The only impact would be .htacess files, Nginx does not support it,
means all of your mod_rewrite rules would have to be converted to nginx
rewrite rules."

How does this affect Drupal? Anyone know?

Comments

jonas28’s picture

you have to setup your nginx file to:

if (!-e $request_filename) {
    rewrite ^/(.*)$ /index.php?q=$1 last;
}

See more on:

  • http://hostingfu.com/article/running-drupal-with-clean-url-on-nginx-or-l...
  • https://support.apthost.com/index.php?_m=knowledgebase&_a=viewarticle&kb...