From 10 October to 19 October I will not be able to give assistance as I will be on vacation. Thank you and I will get back to you as soon as possible.

Okay
  Print

Friendly URL not working on NGNIX web server

Add these directives inside your NGNIX server configuration.

location / {    try_files $uri $uri/ /index.php?$args;
}
location ~ ^/viewer/(ajax|content|css|geoimages|geojson|header|icons|images|js|logos|map_styles|marker_images|vendor)/ {
}
location /viewer/ {    rewrite ^/viewer/(.+?)/?$ /viewer/index.php?furl=$1 last;
}
location ~ ^/showcase/(css|js)/ {
}
location /showcase/ {    rewrite ^/showcase/(.+?)/?$ /showcase/index.php?furl=$1 last;
}