There are two (or one) path(s) and an uri? uri seems to be the REQUEST_URI
Não. É o URI de fallback. try_files path1 [path2] uri
verificar se path1
, path2
existe. Se não, o Nginx irá redirecionar para o uri
.
Por exemplo: try_files $uri $uri/ /index.php;
é equivalente a:
if (!-e $request_filename) {
rewrite ^ /index.php last;
}