Use the following NGINX rewrite rule to ensure proper functionality of the URLs:
if(!-e $request_filename){
rewrite ^\/(.+)$ /index.php?altum=$1 last;
}
This command should be added in your domain.conf nginx file in the location / { ... } field.