We offer a seamless solution to make your ontology URIs resolvable and content negotiable by allowing URL redirection for your ontology URIs to our OntoPortal-Astro URIs. To facilitate this process, we've provided you with a set of .htaccess rewrite rules. By following the simple instructions below, you'll be able to implement these rules swiftly and efficiently, ensuring smooth redirection
RewriteEngine On
RewriteRule ^rdf/epn/2.0/spatial-frame-type/?$ https://ontoportal-astro.eu/ontologies/EPN_SPATFRAMTYPE [R=301,L]
RewriteCond %{REQUEST_URI} ^.*rdf/epn/2.0/spatial-frame-type.*$
RewriteRule ^.*/([^/#]+)/?$ https://ontoportal-astro.eu/ontologies/EPN_SPATFRAMTYPE/$1 [R=301,L]
location / {
rewrite ^/rdf/epn/2.0/spatial-frame-type/?$ https://ontoportal-astro.eu/ontologies/EPN_SPATFRAMTYPE permanent;
if ($request_uri ~* rdf/epn/2.0/spatial-frame-type ){
rewrite ^.*/([^/]+)/?$ https://ontoportal-astro.eu/ontologies/EPN_SPATFRAMTYPE/$1 permanent;
}
}