使用nginx从URL中删除尾部斜杠


14

我希望我的网站上的以下URL是等效的:

/foo/bar
/foo/bar/
/foo/bar/index.html

此外,我希望后两种形式向第一种形式发出HTTP 301重定向。我只是在提供静态页面,它们是按照第三种形式排列的。(换句话说,当用户请求时,/foo/bar他们应在处接收文件/usr/share/.../foo/bar/index.html)。

我的nginx.conf当前包含以下内容:

rewrite ^(.+)/$ $1 permanent;
index index.html;
try_files $uri $uri/index.html =404;

这适用于的请求/foo/bar/index.html,但是当我的请求/foo/bar/foo/bar/Safari告诉我“发生了太多重定向”时,我认为存在无限的重定向循环或类似的循环。如何获取nginx以上述方式将URL映射到文件?

编辑:我的完整配置

这是我的全部nginx.conf,我的域名替换为“ example.com”。

user www-data;
worker_processes 1;
pid /run/nginx.pid;

events {
  worker_connections 768;
}

http {
  sendfile on;
  tcp_nopush on;
  tcp_nodelay on;
  keepalive_timeout 65;
  types_hash_max_size 2048;
  server_tokens off;

  server_names_hash_bucket_size 64;

  include /etc/nginx/mime.types;
  default_type application/octet-stream;

  access_log /var/log/nginx/access.log;
  error_log /var/log/nginx/error.log;

  gzip on;
  gzip_disable "msie6";
  gzip_vary on;
  gzip_proxied any;
  gzip_comp_level 6;
  gzip_buffers 16 8k;
  gzip_http_version 1.1;
  gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss application/atom+xml text/javascript image/svg+xml;

  server {
    server_name www.example.com;
    listen 80;
    return 301 $scheme://example.com$request_uri;
  }

  server {
    server_name example.com 123.45.67.89 localhost;
    listen 80 default_server;

    # Redirect /foobar/ to /foobar
    rewrite ^(.+)/$ $1 permanent;

    root /usr/share/nginx/www/example.com;
    index index.html;
    try_files $uri $uri/index.html =404;

    error_page 404 /404.html;
    error_page 500 502 503 504 /50x.html;

    location = /50x.html {
      root /usr/share/nginx/html;
    }
  }
}

这些文件实际上存在于文件系统上吗?
迈克尔·汉普顿

@MichaelHampton是的。要求/foo/bar/index.html应在/usr/share/nginx/www/foo/bar/index.html或建立时返回文件。网站上的所有路径都直接对应于文件系统路径。
bdesham

@bdesham我无法复制。这是我使用您的配置paste.ubuntu.com/7501697所
Alexey

@AlexeyTen奇怪的是您得到了一些不同的东西。感谢您调查。我发布了一个配置,最终为我工作。
bdesham 2014年

Answers:


19

在您的server块上有此正则表达式:

rewrite ^/(.*)/$ /$1 permanent;

会将所有结尾的斜杠URL重定向到相应的非结尾的斜杠。


1
这仅解决了部分问题。
bdesham

5
这解决了问题的完整标题。
吉万

5

通过将其用作server配置中的最后一个块,我能够获得所需的行为:

server {
  server_name example.com 123.45.67.89 localhost;
  listen 80 default_server;

  # Redirect /foobar/ and /foobar/index.html to /foobar
  rewrite ^(.+)/+$ $1 permanent;
  rewrite ^(.+)/index.html$ $1 permanent;

  root /usr/share/nginx/www/example.com;
  index index.html;
  try_files $uri $uri/index.html =404;

  error_page 404 /404.html;
  error_page 500 502 503 504 /50x.html;

  location = /50x.html {
    root /usr/share/nginx/html;
  }
}

这似乎对我不起作用- /index.html使用HTTP 200而不是重定向来回答URL。“重写”行将被忽略。这仍然是最新的吗?
Christoph Burschka,

1

永远不要使用重写:

  location ~ (?<no_slash>.*)/$ {
       return 301 $scheme://$host$no_slash;
  }

您能否继续说明为什么您不认为重写是个好主意?
bdesham


您的链接建议避免重写的原因是为了提高可读性,而不是因为它们会导致意外的副作用。您的答案远不如rewrite ^(.+)/+$ $1 permanent;
chrBrd

1
这是一个很好的答案,我不知道为什么它被否决了。本文的标题为“ Tatax Rewrites”,它解释了为什么rewrite会很糟糕。话虽如此,提供的答案也确实捕获并匹配了URI,我不确定是否会提高性能,需要测试。请改用此正则表达式(?<no_slash>.+)/$不重定向主页。
剃刀

0
if ($request_uri ~ (.*?\/)(\/+)$ ) {
return 301 $scheme://$host$1;
}

该规则将处理任意数量的尾部斜杠并保留URL。它还将处理基本URL尾部斜杠

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.