We offer a seamless solution to make your semantic resource URIs resolvable and content negotiable by allowing URL redirection for your semantic resource URIs to our EcoPortal 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 ^thesauri/functraits/?$ http://ecoportal.lifewatchdev.eu/ontologies/TRAITSTEST [R=301,L]
RewriteCond %{REQUEST_URI} ^.*thesauri/functraits/.*$
RewriteRule ^.*/([^/#]+)/?$ http://ecoportal.lifewatchdev.eu/ontologies/TRAITSTEST/$1 [R=301,L]
location / {
rewrite ^/thesauri/functraits/?$ http://ecoportal.lifewatchdev.eu/ontologies/TRAITSTEST permanent;
if ($request_uri ~* thesauri/functraits/ ){
rewrite ^.*/([^/]+)/?$ http://ecoportal.lifewatchdev.eu/ontologies/TRAITSTEST/$1 permanent;
}
}