Jak włączyć czyste adresy URL za pomocą Nginx?


9

Używam Drupal 7.x. Osiągnąłem, aby działał bez czystych adresów URL.

Badając, zrozumiałem, że powinienem utworzyć vhost dla każdej witryny drupal i włączyć czyste adresy URL za pomocą następującego kodu.

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

Alternatywnie mógłbym użyć tego kodu.

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

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

Widziałem jednak również, że bez tworzenia vhosta można włączyć czyste adresy URL (takie jak Apache). Próbowałem na obu liniach w moim ustawieniu, ale nie otrzymuję wyniku. Po włączeniu czystych adresów URL zawsze wyświetla się słowo Nginx (lokalny host).

Jaki jest właściwy sposób włączenia czystych adresów URL?

To jest moja konfiguracja w / 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;
        }
}

Nie utworzyłem żadnego vhosta na moim serwerze; ja też nie wiem jak.


1
Czy widziałeś / wypróbowałeś następujące dokumenty Drupala? drupal.org/node/976392
geerlingguy

@geerlingguy Tak. Ta część kodu dodałem do mojego domyślnego pliku w witrynie dostępnej, a kiedy wchodzę na moją stronę, pojawia się błąd 500. Czy muszę utworzyć vhost?
Eduardo,

1
Zajrzyj na github.com/perusio/drupal-with-nginx . Posiada wszystkie opcje konfiguracji, których prawdopodobnie potrzebujesz, aby Drupal działał na serwerze Nginx.
jamestsymp

Odpowiedzi:


11

Mam następną, która działa pomyślnie:

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

dodałem @rewriteiw location @rewrite{}swoim pliku /etc/nginx/sites-available/defaultzrestartowałem nginx, ale nie działa dla mnie. Kiedy włączę czyszczenie adresu URL, wyświetl localhost.
Eduardo,

2Eduardo: masz na myśli, że site.com/index.php działa i otwiera dla ciebie pierwszą stronę?
Nikit,

Tak. Mogę wyświetlić pierwszą stronę. Ale żadnych innych stron
Eduardo,

hmm, czy możesz ponownie wkleić kod?
Nikit

działa dobrze dla mnie
niegrzeczny
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.