ฉันจะเปิดใช้งาน 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) ฉันลองทั้งสองบรรทัดในการตั้งค่าแล้ว แต่ไม่ได้ผลลัพธ์ เมื่อฉันเปิดใช้งาน clean URLs มันจะแสดงคำว่า Nginx (The localhost) เสมอ

วิธีการเปิดใช้งาน 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 ใช่ ส่วนหนึ่งของรหัสนี้ฉันเพิ่มลงในไฟล์เริ่มต้นของฉันในเว็บไซต์ที่มีอยู่และเมื่อฉันเข้าสู่เว็บไซต์ของฉันฉันได้รับข้อผิดพลาด 500 หรือฉันจำเป็นต้องสร้าง vhost?
Eduardo

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
Eduardo

2Eduardo: คุณหมายความว่าsite.com/index.phpทำงานและเปิดหน้าแรกให้คุณหรือไม่
Nikit

ใช่. ฉันสามารถดู Front Page .. แต่ไม่มีหน้าอื่น ๆ
Eduardo

อืมคุณสามารถวางรหัสของคุณอีกครั้งได้ไหม
Nikit

ทำงานได้ดีสำหรับฉัน
หยาบคาย
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.