We offer a seamless solution to make your vocabulary URIs resolvable and content negotiable by allowing URL redirection for your vocabulary URIs to our LovPortal 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 ^ns/rdfa/?$ https://lovportal.lirmm.fr/ontologies/RDFA [R=301,L]
RewriteCond %{REQUEST_URI} ^.*ns/rdfa.*$
RewriteRule ^.*/([^/#]+)/?$ https://lovportal.lirmm.fr/ontologies/RDFA/$1 [R=301,L]
location / {
rewrite ^/ns/rdfa/?$ https://lovportal.lirmm.fr/ontologies/RDFA permanent;
if ($request_uri ~* ns/rdfa ){
rewrite ^.*/([^/]+)/?$ https://lovportal.lirmm.fr/ontologies/RDFA/$1 permanent;
}
}