From 9fc0edaa353639c09a79299eebb6b895a81d63a9 Mon Sep 17 00:00:00 2001 From: Holger Weiss Date: Tue, 8 Oct 2013 19:40:59 +0200 Subject: Redirect /taxonomy/term/2 Redirect /taxonomy/term/2 to /doc/presentation.html. The old URI is referenced e.g. here: http://exchange.nagios.org/directory/Tutorials/Nagios-Core-Tutorials/How-to-Write-Great-Nagios-Plugins-in-Perl--2D-FOSDEM-2007/details diff --git a/etc/nginx/site.conf b/etc/nginx/site.conf index a4fd42d..90ceaea 100644 --- a/etc/nginx/site.conf +++ b/etc/nginx/site.conf @@ -65,6 +65,9 @@ server { location ^~ /download/snapshot/nagios-plugins-HEAD.tar.gz { return 301 /download/snapshot/nagios-plugins-master.tar.gz; } + location ^~ /taxonomy/term/2 { + return 301 /doc/presentation.html; + } location ~ ^/(?:man.*|guidelines|extra-opts)$ { return 301 /doc$request_uri.html; } -- cgit v0.10-9-g596f