annotate tutorial/.htaccess @ 1:2d859f5e3676
ClioPatria instances now have path prefixes that match those of the instance within the main server, so that internal links work
author |
Chris Cannam |
date |
Tue, 31 Oct 2017 11:47:10 +0000 |
parents |
1e44d666ced1 |
children |
|
rev |
line source |
Chris@0
|
1 RewriteEngine On
|
Chris@0
|
2
|
Chris@0
|
3 RewriteBase /tutorial
|
Chris@0
|
4 RewriteRule ^$ index.html [L]
|
Chris@0
|
5
|
Chris@0
|
6 RewriteRule ^dataset$ http://localhost:3333/ [P]
|
Chris@0
|
7 RewriteRule resource/(.*) http://localhost:3333/$1 [P]
|
Chris@0
|
8 RewriteRule ^sparql/$ http://localhost:3334/sparql/ [P]
|
Chris@0
|
9 RewriteRule ^services/sparql$ http://localhost:3334/sparql/ [P]
|
Chris@0
|
10 RewriteRule ^(.*)\.(html|css|mov)$ - [P]
|
Chris@0
|
11
|