Bagaimana cara mengaktifkan URL bersih dengan Nginx?

9

Saya menggunakan Drupal 7.x. Saya berhasil membuatnya tanpa URL yang bersih.

Menyelidiki, saya mengerti bahwa saya harus membuat vhost untuk setiap situs drupal dan mengaktifkan URL bersih dengan kode berikut.

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

Atau, saya bisa menggunakan kode ini.

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

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

Namun, saya juga melihat bahwa tanpa membuat vhost dapat mengaktifkan URL bersih (seperti Apache). Saya mencoba pada kedua baris dalam pengaturan saya tetapi saya tidak mendapatkan hasil. Ketika saya mengaktifkan URL bersih, selalu menampilkan kata Nginx (The localhost).

Apa cara yang tepat untuk mengaktifkan URL bersih?

Ini adalah konfigurasi saya di / 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;
        }
}

Saya belum membuat vhost di server saya; saya juga tidak tahu caranya.

Eduardo
sumber
1
Pernahkah Anda melihat / mencoba yang berikut, dari Drupal docs? drupal.org/node/976392
geerlingguy
@geerlingguy Ya. Bagian kode ini saya tambahkan ke file default saya di situs-tersedia dan, ketika saya masuk ke situs saya, saya mendapatkan kesalahan 500. Atau saya perlu membuat vhost?
Eduardo
1
Lihatlah github.com/perusio/drupal-with-nginx . Ini memiliki semua opsi konfigurasi yang Anda perlukan untuk menjalankan Drupal di server Nginx.
jamestsymp

Jawaban:

11

Selanjutnya saya berhasil bekerja:

  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;
 }
Nikit
sumber
saya menambahkan @rewritedan location @rewrite{}dalam file saya /etc/nginx/sites-available/defaultdan restartn nginx tetapi tidak berfungsi untuk saya. Ketika saya mengaktifkan url membersihkan, tampilkan localhost.
Eduardo
2Eduardo: jadi maksud Anda site.com/index.php berfungsi dan buka halaman depan untuk Anda?
Nikit
Iya. Saya dapat melihat Halaman Depan .. Tapi tidak ada halaman lainnya
Eduardo
hmm, bisakah kamu menempelkan kode lagi?
Nikit
bekerja dengan baik untuk saya
kasar