To make our products work on NGINX, you will need to add a code in the conf file.
The following code has been tested and it works fine. Please note that this code must be added to nginx.conf and you will need restart your server for the change to apply. The code below should be added within the server { } block.
Premium URL Shortener version 6.0+
Make sure the document root is pointing to the /public directory located in the folder where the script is installed
location / {
try_files $uri $uri/ /index.php?$query_string;
}
Premium Media Script
location / {
if (!-e $request_filename)
{
rewrite ^/admin/(.*)?$ /admin/index.php?a=$1 break;
rewrite ^/(.*)$ /index.php?a=$1 last;
break;
}
}