By timba on
I don't seem to be getting the i18n module to work correctly with Drupal 6.13 even after installing a fresh copy and following the guidelines in the Internationalization handbook http://drupal.org/node/133977
The problem I seem to be having is that the path aliases /fr/node/1 don't work only /node/1 works.
Is there a bug I'm not aware of? I'm using i18n-6.x-1.1
Thanks.
Comments
Re: i18n not working with Drupal 6.13?
In case anyone ever runs against this problem. Here's the simple solution: http://drupal.org/node/110224#comment-267333
Apparently, I was using nginx as the web server and was using
rewrite ^(.*)$ /index.php?q=$1 last;instead of
rewrite ^/(.*)$ /index.php?q=$1 last;.