aboutsummaryrefslogtreecommitdiff
path: root/.htaccess
blob: 75851ea6969116cca6ed346a8dfa813026bc19e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
RewriteEngine On

# Deliver literal files as-is
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l

# / -> index.php - room/streams list
DirectoryIndex index.php

# /room/ -> room.php - native av-player in hq (with format switcher included)
RewriteRule ^(saal1|saal2|saalg|saal6)/?$ room.php?room=$1&format=hq&language=native& [L]

# /room/ -> room.php - translated av-player in hq (with format switcher included)
RewriteRule ^(saal1|saal2|saalg|saal6)/translated/?$ room.php?room=$1&format=hq&language=translated& [L]

# /room/format/ -> room.php - native av-player in $format (with format switcher included)
RewriteRule ^(saal1|saal2|saalg|saal6)/(hd|lq|audio|slides)/?$ room.php?room=$1&format=$2&language=native [L]

# /room/format/translated -> room.php - translated av-player in $format (with format switcher included)
RewriteRule ^(saal1|saal2|saalg|saal6)/(hd|lq|audio|slides)/translated/?$ room.php?room=$1&format=$2&language=translated [L]

# /party/ -> player.php - simple audio-player for party
RewriteRule ^(lounge|ambient|sendezentrum)/?$ party.php?room=$1&format=audio [L]

# Show a known page in case of as miss
ErrorDocument 404 404.php

# Allow Caches & Proxies to Cache all resources
#ExpiresActive On
#ExpiresDefault "access plus 4 hours"