Quote:
Originally Posted by krosswarrior
According to  you just need
PHP Code:
location / {
try_files $uri $uri/ /index.php?$args;
}
Obviously change the path after location.
|
well i fixed it somehow
Code:
location /download/ {
try_files $uri $uri/ /download/index.php?$args;
}
replaced /index.php?$args;
with /download/index.php?$args;