Drupal + nginx + многоязычный сайт не работают Чистые ссылки
location / {
index index.php index.html;
root /var/www/example.org.ua;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?q=$1 last;
break;
}
index index.php index.html;
root /var/www/example.org.ua;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?q=$1 last;
break;
}
}
Если вручную Я вбиваю следующее, то работает:
http://example.org.ua/node/1/en/
Друпал Сам дает ссылки такие:
http://example.org.ua/en/node/1/
Хотя без ЧПУ:
index.php?q=en/node/1
В admin/settings/language/configure
стоит:
Префикс пути с определением языка.
Комментарии
Вот когда включены ЧПУ:
В этом наверное проблема
Как бы её решить ?
192.168.1.1 - - [24/Sep/2010:14:20:31 +0300] "GET /modules/cck/theme/content-module.css?d HTTP/1.1" 304 0 "http://example.org.ua/ru/" "Mozilla/5.0 (Windows; U; Windows NT 6.1; uk; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB7.1"
192.168.1.1 - - [24/Sep/2010:14:20:31 +0300] "GET /modules/node/node.css?d HTTP/1.1" 304 0 "http://example.org.ua/ru/" "Mozilla/5.0 (Windows; U; Windows NT 6.1; uk; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB7.1"
192.168.1.1 - - [24/Sep/2010:14:20:31 +0300] "GET /modules/poll/poll.css?d HTTP/1.1" 304 0 "http://example.org.ua/ru/" "Mozilla/5.0 (Windows; U; Windows NT 6.1; uk; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB7.1"
192.168.1.1 - - [24/Sep/2010:14:20:31 +0300] "GET /modules/system/defaults.css?d HTTP/1.1" 304 0 "http://example.org.ua/ru/" "Mozilla/5.0 (Windows; U; Windows NT 6.1; uk; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB7.1"
192.168.1.1 - - [24/Sep/2010:14:20:31 +0300] "GET /modules/system/system.css?d HTTP/1.1" 304 0 "http://example.org.ua/ru/" "Mozilla/5.0 (Windows; U; Windows NT 6.1; uk; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB7.1"
192.168.1.1 - - [24/Sep/2010:14:20:31 +0300] "GET /modules/system/system-menus.css?d HTTP/1.1" 304 0 "http://example.org.ua/ru/" "Mozilla/5.0 (Windows; U; Windows NT 6.1; uk; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB7.1"
192.168.1.1 - - [24/Sep/2010:14:20:31 +0300] "GET /modules/user/user.css?d HTTP/1.1" 304 0 "http://example.org.ua/ru/" "Mozilla/5.0 (Windows; U; Windows NT 6.1; uk; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB7.1"
192.168.1.1 - - [24/Sep/2010:14:20:31 +0300] "GET /modules/cck/modules/fieldgroup/fieldgroup.css?d HTTP/1.1" 304 0 "http://example.org.ua/ru/" "Mozilla/5.0 (Windows; U; Windows NT 6.1; uk; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB7.1"
192.168.1.1 - - [24/Sep/2010:14:20:31 +0300] "GET /modules/views/css/views.css?d HTTP/1.1" 304 0 "http://example.org.ua/ru/" "Mozilla/5.0 (Windows; U; Windows NT 6.1; uk; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB7.1"
Вот когда выключены:
[24/Sep/2010:14:23:03 +0300] "GET /index.php?q=ru/node/9 HTTP/1.1" 200
Переадресация в nginx у Вас реализована не по Сысоеву.
Рабочий конфиг (как насчет мультиязычности не знаю): http://www.ruby-forum.com/topic/181640
Еще один, сам не смотрел еще : http://github.com/yhager/nginx_drupal
del
Ответили выше
Если кто-то придёт из поиска читать этот пост - в nginx не принято использовать if-условия.
Идеальный вариант - применить для настройки вот этот репозиторий: https://github.com/perusio/drupal-with-nginx
или в крайнем случае вот такую конфигурацию:
server_name www.yoursite.ru;
return 301 $scheme://yoursite.ru$request_uri;
}
server {
listen 80 default;
server_name yoursite.ru;
root /path/to/yoursite.ru; ## <-- Your only path reference.
# Enable compression, this will help if you have for instance advagg module
# by serving Gzip versions of the files.
gzip_static on;
# access_log /var/log/nginx/yoursite.ru-access.log;
error_log /var/log/nginx/yoursite.ru-error.log;
location = /favicon.ico {
log_not_found off;
access_log off;
}
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
location ~* ^(?:.+.(?:htaccess|make|txt|engine|inc|info|install|module|profile|po|pot|sh|.sql|test|theme|tpl(?:.php)?|xtmpl)|code-style.pl|/Entries.|/Repository|/Root|/Tag|/Template)$
{
return 404;
}
#Very rarely should these ever be accessed outside of your lan
location ~* \.(txt|log)$ {
# allow 127.0.0.1;
deny all;
}
location ~ \..*/.*\.php$ {
return 403;
}
# No no for private
location ~ ^/sites/.*/private/ {
return 403;
}
# Block access to "hidden" files and directories whose names begin with a
# period. This includes directories used by version control systems such
# as Subversion or Git to store control files.
location ~ (^|/)\. {
return 403;
}
location / {
# This is cool because no php is touched for static content
try_files $uri @rewrite;
}
location @rewrite {
# Clean URLs are handled in drupal_environment_initialize().
rewrite ^ /index.php;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
#NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $request_filename;
fastcgi_intercept_errors on;
fastcgi_pass unix:/var/run/php5-fpm.sock;
}
# Fighting with Styles? This little gem is amazing.
location ~ ^/sites/.*/files/styles/ {
try_files $uri @rewrite;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
# location ~* \.(js|css|ico)$ {
expires max;
log_not_found off;
}
}