pull archive keyring out of global trust path
[grml.org.git] / download / bounce / .htaccess
1 RewriteEngine on
2
3 RewriteCond %{QUERY_STRING} arch=amd64
4 RewriteRule ^.*$ grml64
5
6 RewriteCond %{QUERY_STRING} arch=i386
7 RewriteRule ^.*$ grml32
8
9 RewriteCond %{QUERY_STRING} arch=both
10 RewriteRule ^.*$ grml96
11
12 RewriteCond %{QUERY_STRING} version=([0-9\-\.a-z]+)
13 RewriteRule ^(.*)$ $0_%1
14
15 RewriteCond %{QUERY_STRING} version=([0-9\-\.a-z]+)rc
16 RewriteRule ^(.*)$ devel/$0
17
18 RewriteRule ^(.*)$ $0.iso
19
20 RewriteCond %{QUERY_STRING} filetype=bt
21 RewriteRule ^(.*)$ $0.torrent
22 RewriteCond %{QUERY_STRING} filetype=(md5|sha1)
23 RewriteRule ^(.*)$ $0.%1
24 RewriteCond %{QUERY_STRING} filetype=signature
25 RewriteRule ^(.*)$ $0.sha1.asc
26
27 RewriteRule ^(.*)$ http://download.grml.org/$0? [R,L]
28