October 15, 2019

What is the NGINX rewrite rule for Premium URL Shortener

Back to Solutions

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; 
    }
}

Was this solution helpful?

Related Solutions

7-Day Website

Professional site, live in one week. Built to convert visitors into customers.

Your website. Live in 7 days or less. Starting at $999.

Enterprise Solutions

Complex requirements? We've built platforms handling 10M+ requests daily.

Let's architect something your competitors can't copy.

GemPixel