diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-12 11:15:13 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-12 11:15:13 +0100 |
commit | cf2ef04908d9deca7e74144ecb531705b7f8c9cc (patch) | |
tree | ddbc6bf4feaf88fa65a9cd882bfab8feee1b70b1 /etc/apache2 | |
parent | 83909051400e4c4c3d656bf50ab94435f9c54fc8 (diff) | |
download | jenkins.debian.net-cf2ef04908d9deca7e74144ecb531705b7f8c9cc.tar.xz |
reproducible: add redirect for /testing
Diffstat (limited to 'etc/apache2')
-rw-r--r-- | etc/apache2/sites-available/jenkins.debian.net | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/apache2/sites-available/jenkins.debian.net b/etc/apache2/sites-available/jenkins.debian.net index 2944175c..bd2f2e8d 100644 --- a/etc/apache2/sites-available/jenkins.debian.net +++ b/etc/apache2/sites-available/jenkins.debian.net @@ -204,10 +204,10 @@ Use common-debian-service-https-redirect reproducible.debian.net RewriteCond %{REQUEST_URI} ^/index_all_abc.html$ RewriteRule ^/?(.+) /sid/amd64/$1 [R=301,L] - # redirect (/sid|/experimental) to (/sid|/experimental)/index_suite_stats.html + # redirect (/testing|sid|/experimental) to (/testing|/sid|/experimental)/index_suite_stats.html # note: the missing slash in the RewriteRule is wanted to avoid a double slash RewriteCond %{HTTP_HOST} reproducible\.debian\.net - RewriteCond %{REQUEST_URI} ^/(sid|experimental)/$ + RewriteCond %{REQUEST_URI} ^/(testing|sid|experimental)/$ RewriteRule ^/(.*) /$1index_suite_stats.html [R,L] </VirtualHost> |