virtual hosts - Difference between these two nginx try_files statements for WordPress?

admin2025-06-06  6

What is the difference between these two try_files statements and which do you use and why? I've seen both used in tutorials online but cannot find an explanation of the differences or benefits of one over the other.

location / {
  #try_files $uri $uri/ /index.php$is_args$args;
  #try_files $uri $uri/ /index.php?q=$uri&$args;
}

What is the difference between these two try_files statements and which do you use and why? I've seen both used in tutorials online but cannot find an explanation of the differences or benefits of one over the other.

location / {
  #try_files $uri $uri/ /index.php$is_args$args;
  #try_files $uri $uri/ /index.php?q=$uri&$args;
}
Share Improve this question asked Nov 3, 2018 at 14:33 PaulPaul 3802 silver badges9 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 2

As far as I know, WordPress does not require a q= parameter set to the original request (the pretty permalink). So in the second option, the q= parameter will be silently ignored.

According to the Nginx wiki page for WordPress, the query parameters (?$args or $is_args$args) are included:

... so non-default permalinks doesn't break when using query string

I do not know what "non-default permalinks" are, but I just use the following, which works fine with pretty permalinks:

try_files $uri $uri/ /index.php;
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749208777a317272.html

最新回复(0)