To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Revision:

root / magnatune / .htaccess @ 0:1e44d666ced1

History | View | Annotate | Download (467 Bytes)

1
RewriteEngine On
2

    
3
RewriteBase /magnatune
4
RewriteRule ^$ magnatune.html [L]
5

    
6
# Directory index - we'll pretend I know how these work :/ -j
7
#RewriteRule ^(.*magnatune)$ $1/magnatune.html
8
#RewriteRule ^$ magnatune.html
9

    
10
RewriteRule store/(.*) http://localhost:2020/$1 [P]
11
RewriteRule sparql/ http://localhost:2020/sparql/ [P]
12
# prevent the last rule firing for these file types :
13
RewriteRule ^(.*)\.(html|css|mov)$ - [P]
14

    
15
RewriteRule ^(.*)$ http://localhost:2021/$1 [P]