Live Helper Chat support forum.. Forum is locked. New place for questions - Github Discussions
You are not logged in.
Pages: 1
I had some trouble getting the back office working with Nginx on a Directadmin host.
Using this Nginx directive caused the server to show the source code:
location / {
rewrite "^(.*)$" "/index.php?$1" last;
}
Using this configuration worked fine:
location / {
try_files $uri $uri/ /index.php?q=$uri&$args;
}
In Directadmin no further configuration is needed.
Just in case somebody runs into the same problem.
Offline
Pages: 1