We offer a seamless solution to make your ontology URIs resolvable and content negotiable by allowing URL redirection for your ontology URIs to our %{site} 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 ^ncl/FAIR-Incubator/earthsciencevariables/?$ https://earthportal.eu/ontologies/TERRA_VOCABS_ESV [R=301,L]
RewriteCond %{REQUEST_URI} ^.*ncl/FAIR-Incubator/earthsciencevariables.*$
RewriteRule ^.*/([^/#]+)/?$ https://earthportal.eu/ontologies/TERRA_VOCABS_ESV/$1 [R=301,L]
location / {
rewrite ^/ncl/FAIR-Incubator/earthsciencevariables/?$ https://earthportal.eu/ontologies/TERRA_VOCABS_ESV permanent;
if ($request_uri ~* ncl/FAIR-Incubator/earthsciencevariables ){
rewrite ^.*/([^/]+)/?$ https://earthportal.eu/ontologies/TERRA_VOCABS_ESV/$1 permanent;
}
}