-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.htaccess
21 lines (16 loc) · 1.02 KB
/
.htaccess
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
RewriteEngine on
# Redirect for specific graphs cq. profiles
RewriteRule ^skos/def$ https://nl-digigo.github.io/nen2660/data/nen2660-skos.ttl [R=302,L]
RewriteRule ^rdfs/def$ https://nl-digigo.github.io/nen2660/data/nen2660-rdfs.ttl [R=302,L]
RewriteRule ^owl/def$ https://nl-digigo.github.io/nen2660/data/nen2660-owl.ttl [R=302,L]
RewriteRule ^shacl/def$ https://nl-digigo.github.io/nen2660/data/nen2660-shacl.ttl [R=302,L]
# Redirect vocab/def/ URIs to the human readable description...
RewriteCond "%{HTTP_ACCEPT}" "text/html"
RewriteRule ^term$ https://nl-digigo.github.io/nen2660/term [R=302,L]
# Redirect vocab/def/ URIs to the human readable description...
RewriteCond "%{HTTP_ACCEPT}" "text/html"
RewriteRule ^term$ https://nl-digigo.github.io/nen2660/def [R=302,L]
RewriteCond "%{HTTP_ACCEPT}" "application/trig"
RewriteRule ^term$ https://nl-digigo.github.io/nen2660/data/concat/nen2660.trig [R=302,L]
# Finally, redirect for all else
RewriteRule ^$ https://nl-digigo.github.io/nen2660/data/concat/nen2660.ttl [R=302,L]