Knowledge Base

Premium URL Shortener

What is the NGINX rewrite rule for Premium URL Shortener

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 v6.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 URL Shortener (legacy) & Premium Media Script

location / {
 if (!-e $request_filename)
    { 
        rewrite ^/admin/(.*)?$ /admin/index.php?a=$1 break;
        rewrite ^/(.*)$ /index.php?a=$1 last;
        break; 
    }
}

Was this helpful? 😃 😞

Still have questions?

If you still have questions, feel free to open a ticket and we will gladly help you out!

Open a ticket