Как включить чистые URL с помощью Nginx?


9

Я использую Drupal 7.x. Я добился, чтобы это работало без чистых URL.

Исследуя, я понял, что должен создать vhost для каждого сайта drupal и включить чистые URL с помощью следующего кода.

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

В качестве альтернативы, я мог бы использовать этот код.

location / {
         [... ]
         error_page 404 = @ drupal;
         [... ]
}

location @ drupal {
         rewrite ^ (. *) $ / index.php? q = $ 1 last;
}

Тем не менее, я также видел, что без создания vhost можно включить чистые URL-адреса (например, Apache). Я попробовал обе строки в моей настройке, но я не получаю результат. Когда я включаю чистые URL, всегда отображается слово Nginx (локальный хост).

Как правильно включить чистые URL?

Это моя конфигурация в / etc / nginx / sites-available / default.

server {
        listen   80; ## listen for ipv4; this line is default and implied
        listen   [::]:80 default ipv6only=on; ## listen for ipv6

        root /usr/share/nginx/www;
        index index.php index.html index.htm;

        # Make site accessible from http://localhost/
        server_name localhost;

        location / {
                # First attempt to serve request as file, then
                # as directory, then fall back to index.html
                try_files $uri $uri/ /index.html;
                # Uncomment to enable naxsi on this location
                # include /etc/nginx/naxsi.rules
        }

        location /doc/ {
                alias /usr/share/doc/;
                autoindex on;
                allow 127.0.0.1;
                deny all;
        }

        location /images {
                root /usr/share;
                autoindex off;
        }
        # Only for nginx-naxsi : process denied requests
        #location /RequestDenied {
                # For example, return an error code
                #return 418;
        #}

        #error_page 404 /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
                root /usr/share/nginx/www;
        }

        #Pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
                try_files $uri =404;
                #fastcgi_split_path_info ^(.+\.php)(/.+)$;
        # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini

                # With php5-cgi alone:
                #fastcgi_pass 127.0.0.1:9000;
                # With php5-fpm:
                fastcgi_pass unix:/tmp/php5-fpm.sock;
                fastcgi_index index.php;
                include fastcgi_params;
        }

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        location ~ /\.ht {
                deny all;
        }
}

Я не создал никакого vhost на моем сервере; и я не знаю как.


1
Вы видели / пробовали следующее из Drupal docs? drupal.org/node/976392
geerlingguy

@geerlingguy Да. Эту часть кода я добавил в свой файл по умолчанию в site-available, и при входе на сайт я получаю ошибку 500. Или мне нужно создать vhost?
Эдуардо

1
Посмотрите на github.com/perusio/drupal-with-nginx . Он имеет все параметры конфигурации, которые вам могут понадобиться для запуска Drupal на сервере Nginx.
jamestsymp

Ответы:


11

У меня рядом, что успешно работают:

  location / {
    index index.php;
    # This is cool because no php is touched for static content
    try_files $uri $uri/ @rewrite;
    expires max;
  }

  location @rewrite {
    # Some modules enforce no slash (/) at the end of the URL
    # Else this rewrite block wouldn't be needed (GlobalRedirect)
    rewrite ^/(.*)$ /index.php?q=$1;
  }

  location ~ \.php$ {
    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME /srv/www/www.example.com/public_html$fastcgi_script_name;
    fastcgi_intercept_errors on;
    fastcgi_pass unix:/var/run/php-fpm.sock; # fastcgi_pass unix:/tmp/php5-fpm.sock;
 }

я добавил @rewriteи location @rewrite{}в моем файле /etc/nginx/sites-available/defaultи перезапустить nginx, но не работает для моего. Когда я включаю, очищает URL, отображает localhost.
Эдуардо

2Eduardo: так вы имеете в виду, что site.com/index.php работает и открывает для вас первую страницу?
Никит,

Да. Я могу просмотреть титульную страницу .. Но нет других страниц
Эдуардо

хм, вы можете вставить свой код снова?
Никит,

у меня отлично работает
грубо
Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.