initial import
[grml.org.git] / download / bounce / .htaccess
1 RewriteEngine on
2
3 RewriteCond %{QUERY_STRING} arch=amd64
4 RewriteRule ^.*$ grml65
5
6 RewriteCond %{QUERY_STRING} arch=i386
7 RewriteRule ^.*$ grml
8
9 RewriteCond %{QUERY_STRING} flavour=(medium|small)
10 RewriteRule ^(.*)$ $0-%1
11
12 RewriteCond %{QUERY_STRING} version=([0-9\-\.a-z]+)
13 RewriteRule ^(.*)$ $0_%1
14
15 RewriteRule ^(.*)$ $0.iso
16
17 RewriteCond %{QUERY_STRING} filetype=bt
18 RewriteRule ^(.*)$ $0.torrent
19 RewriteCond %{QUERY_STRING} filetype=(md5|sha1)
20 RewriteRule ^(.*)$ $0.%1
21 RewriteCond %{QUERY_STRING} filetype=signature
22 RewriteRule ^(.*)$ $0.sha1.asc
23
24 RewriteRule ^(.*)$ http://download.grml.org/$0? [R,L]
25