我正在将一个旧网站移动到一个新的基于 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
(Thx 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。现在我有两个问题:
- 有没有办法得到更详细的错误,告诉我哪里出了问题?
- 怎么了?我需要更改包含文件的内容吗?我需要移动部分吗?
非常感谢您的帮助。
map
指令必须是直接子http
块。在您的情况下,您必须将它放在
server
块旁边,因为您的自定义配置文件包含http
在 nginx.conf 的块内。我想通了,谢谢阿列克谢的指点。有一个 4 折的问题:
service nginx configtest
告诉不到,nginx -t
阿列克谢又指给我看现在我
/etc/nginx/nginx.conf
的部分中有 2 行http {}
:/etc/nginx/sites-enabled/notessensei
文件如下所示:如果您想查看它的实际效果,请从wissel.net中选择任何博客条目并将 uri 部分应用到notessensei.com - 就像拥有超过 1200 个条目的魅力一样。