如何使用Nginx启用干净的URL?


9

我正在使用Drupal7.x。我已经取得了使它在没有干净URL的情况下也可以工作的能力。

调查中,我了解到我应该为每个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;
}

但是,我也看到不创建虚拟主机就可以启用干净的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;
        }
}

我没有在服务器上创建任何虚拟主机;我也不知道如何。


1
您是否从Drupal文档中查看/尝试了以下内容?drupal.org/node/976392
geerlingguy

@geerlingguy是的。我将这部分代码添加到站点可用的默认文件中,并且当我进入站点时出现错误500。还是需要创建虚拟主机?
Eduardo

1
看看github.com/perusio/drupal-with-nginx。它具有您可能需要在Nginx服务器上运行Drupal的所有配置选项。
jamestsymp

Answers:


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,然后重新启动了nginx,但不适用于我。当我启用清理URL时,显示本地主机。location @rewrite{}/etc/nginx/sites-available/default
Eduardo

2Eduardo:所以您的意思是site.com/index.php正在运行并为您打开首页?
Nikit

是。我可以查看首页。.但是没有其他页面
Eduardo

嗯,您可以再次粘贴您的代码吗?
Nikit 2013年

对我来说效果很好
粗鲁的
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.