• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

Issue Xenforo 2 nginx friendly URLs 404 Not Found

JAFRI

New Pleskian
Hello, i face a problem with Xenforo 2 nginx all friendly URLs 404 Not Found.

pls help me.

‪Ubuntu 16.04.5 LTS‬ Product: Plesk Onyx 17.8.11

Additional nginx directives:

Code:
location /var/www/vhosts/domain.com/httpdocs/ {
    try_files $uri $uri/ /var/www/vhosts/domain.com/httpdocs/index.php?$uri&$args;
    index index.php index.html;
}

location /var/www/vhosts/domain.com/httpdocs/install/data/ {
    internal;
}
location /var/www/vhosts/domain.com/httpdocs/install/templates/ {
    internal;
}
location /var/www/vhosts/domain.com/httpdocs/internal_data/ {
    internal;
}
location /var/www/vhosts/domain.com/httpdocs/library/ { #legacy
internal;
}
location /xf/src/ {
    internal;
}

location ~ \.php$ {
    try_files $uri =404;
    fastcgi_pass    127.0.0.1:9000;
    fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include         fastcgi_params;
}

Options - XenForo 2 Manual
 
Back
Top