-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathredirects.htaccess
53 lines (47 loc) · 2.87 KB
/
redirects.htaccess
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
permalink: .htaccess
layout: null
---
# Redirects
# Comparison files
Redirect permanent /comparison/quality.png /static/comparison/quality.png
Redirect permanent /comparison/quality.svg /static/comparison/quality.svg
Redirect permanent /comparison/opus_ha_results.png /static/comparison/opus_ha_results.png
Redirect permanent /comparison/opus_ha_results_96kbps.png /static/comparison/opus_ha_results_96kbps.png
Redirect permanent /comparison/opus_comparison.png /static/comparison/opus_comparison.png
Redirect permanent /comparison/opus_comparison.odg /static/comparison/opus_comparison.odg
Redirect permanent /comparison/GoogleTest1.pdf /static/comparison/GoogleTest1.pdf
Redirect permanent /comparison/GoogleTest2.pdf /static/comparison/GoogleTest2.pdf
# Presentation files
Redirect permanent /presentations/opus_ccbe2013.pdf /static/presentations/opus_ccbe2013.pdf
Redirect permanent /presentations/opus_celt_aes135.pdf /static/presentations/opus_celt_aes135.pdf
Redirect permanent /presentations/opus_voice_aes135.pdf /static/presentations/opus_voice_aes135.pdf
Redirect permanent /presentations/LCA-opus-video-thumb.png /static/presentations/LCA-opus-video-thumb.png
Redirect permanent /presentations/misc/lca-opus-audio.tar.gz /static/presentations/misc/lca-opus-audio.tar.gz
Redirect permanent /presentations/misc/lca-opus.odp /static/presentations/misc/lca-opus.odp
Redirect permanent /presentations/misc/lca-opus.pdf /static/presentations/misc/lca-opus.pdf
# Example files
Redirect permanent /ehren-paper_lights-96.opus /static/examples/ehren-paper_lights-96.opus
Redirect permanent /examples/sweep.ogg /static/examples/sweep.ogg
Redirect permanent /examples/sweep.wav /static/examples/sweep.wav
Redirect permanent /examples/samples /static/examples/samples
# Testvector files
Redirect permanent /docs/opus_testvectors-rfc8251.tar.gz /static/testvectors/opus_testvectors-rfc8251.tar.gz
Redirect permanent /docs/opus_testvectors.tar.gz /static/testvectors/opus_testvectors.tar.gz
Redirect permanent /testvectors/opus_testvectors.tar.gz /static/testvectors/opus_testvectors.tar.gz
Redirect permanent /testvectors/opus_testvectors-draft11.tar.gz /static/testvectors/opus_testvectors-draft11.tar.gz
Redirect permanent /testvectors/opus_testvectors-draft10.tar.gz /static/testvectors/opus_testvectors-draft10.tar.gz
Redirect permanent /testvectors/opus_testvectors-draft09.tar.gz /static/testvectors/opus_testvectors-draft09.tar.gz
# Misc redirects
Redirect seeother /older_news.shtml.en /news
# Caching stuff
<ifmodule mod_expires.c>
ExpiresActive on
ExpiresDefault "access plus 5 minutes"
ExpiresByType image/x-icon "access plus 1 month"
ExpiresByType application/x-gzip "access plus 1 month"
ExpiresByType audio/ogg "access plus 1 week"
ExpiresByType image/png "access plus 1 week"
ExpiresByType image/jpeg "access plus 1 week"
ExpiresByType image/gif "access plus 1 week"
</ifmodule>