To configure your server with
Nginx, you’ll need to specify the correct data location in your
website’s configuration file. Otherwise, this feature will not function
properly.
Setup,
- Locate your website’s Nginx configuration file (typically found in /etc/nginx/sites-available/ ).
- Update the file with the required data path to ensure proper operation.
- Open your domain or sub-domain nginx configuration file with an editor & add the following code,
Location/ {
try_files $uri $uri/ /index.php?$query_string;
}
