使用外部文件将旧 URL 映射到新 URL - 配置无效

使用外部文件将旧 URL 映射到新 URL - 配置无效

我正在将一个旧网站移至新的基于 nginx 的主机。为了保留 URL(已完全更改),我有一个列出映射的文件。我想将其与地图模块

里面/etc/nginx/nginx.conf http{ ... }我引用了 PERL 和小写函数:

#Include PERL and have a function for lowercasing the incoming URL
perl_modules perl/lib;

    # function to lowercase incoming strings like the URL
    perl_set $uri_lowercase 'sub {
        my $r = shift;
        my $uri = $r->uri;
        $uri = lc($uri);
        return $uri;
    }';

我的站点配置在文件中/etc/nginx/sites-enabled/notessensei(感谢 Alexey 指出这一点)如下所示:

server {
    listen www.notessensei.com:80;
    root /home/stw/www;
    index index.html;
    server_name www.notessensei.com notessensei.com;

    location / {
        map $uri_lowercase $new {
            include /home/stw/www/blognginx.map;
        }

        if ($new) {
                rewrite ^ $new redirect;
        }
    }

    error_page 404 /blog/404.html;

}

映射文件blognginx.map如下所示:

/blog/d6plinks/shwl-6bv35s /blog/2005/04/garbage-in-.html;
/blog/d6plinks/shwl-6c6ggp /blog/2005/05/just-me.html;
/blog/d6plinks/shwl-6c6gh4 /blog/2005/05/it-is-quotmake-your-own-caption-quot-time.html;
/blog/d6plinks/shwl-6c997j /blog/2005/05/big-business-wwjd.html;
/blog/d6plinks/shwl-6ca5qb /blog/2005/05/domino-on-solaris-anyone.html;
/blog/d6plinks/shwl-6ce65j /blog/2005/05/going-places-vietnam.html;
/blog/d6plinks/shwl-6ce6c9 /blog/2006/02/umsys-as-old-as-unix-sort-of.html;

大概有1300行。当我执行 a 时,service nginx configtest我得到失败。当我不使用该include语句时,我会得到 OK。现在我有两个问题:

  1. 有没有办法得到更详细的错误,告诉我什么是错误的,在哪里
  2. 哪里出了问题?我需要更改包含文件的内容吗?我需要移动该部分吗?

非常感谢您的帮助。

答案1

map指令必须是直接子http块。

语法:map string $variable { ... }

默认: -

上下文: http

在您的情况下,您必须将其放在server块旁边,因为您的自定义配置文件包含http在 nginx.conf 中的块内。

map $uri_lowercase $new {
  include /home/stw/www/blognginx.map;
}

server {
  ...
}

答案2

在 Alexey 的指点下,我终于搞清楚了。问题有四点:

  • Alexey 指出,map 语句的位置不正确
  • 该文件内部有一些错误(几行缺少空格)
  • 地图太小(见下面的解决方案)
  • 告诉service nginx configtest少于nginx -t,Alexey 再次指出我在那里

现在我的部分/etc/nginx/nginx.conf中又增加了两行http {}

## Increase bucket for big redirects
map_hash_bucket_size 256;
map_hash_max_size 4092;

文件/etc/nginx/sites-enabled/notessensei如下所示:

map $uri_lowercase $new {
    include /home/stw/www/blognginx.map;
}

server {
    listen www.notessensei.com:80;
    root /home/stw/www;
    index index.html index.htm;
    server_name www.notessensei.com notessensei.com;

    location / {
        if ($new) {
                return 301 $new;
        }
    }

    error_page 404 /blog/404.html;

}

如果你想看看它的实际效果,请从以下博客中挑选任意一篇威塞尔网并将 uri 部分应用于notessensei.com- 有效处理超过 1200 个条目。

相关内容