Como fazer uma regra de reescrita do Nginx para /test show /test.html

Como fazer uma regra de reescrita do Nginx para /test show /test.html

Então, tenho tentado fazer meu site funcionar de uma forma que:

example.com mostra example.com/index.html
example.com/test mostra example.com/test.html
e assim por diante.

Então meu arquivo de configuração atual é este:

server {
    listen      80;
    listen      [::]:80;
    server_name example.com;
    root        /var/www/html;
    index index.html index.php;

    location / { 
        try_files $uri.html $uri $uri/ @htmlext;
    }   

    location ~ \.html$ {
        try_files $uri =404;
    }

    location @htmlext {
        rewrite ^(.*)$ $1.html last;
    } 

    error_page 404 /404.html;
}

Então, eu estava pesquisando no Google ontem e não consegui fazê-lo funcionar. Então, obrigado antecipadamente!

Responder1

server {
  listen      80;
  listen      [::]:80;
  server_name example.com;
  root        /var/www/html;
  index index.html index.php;

  location / { 
    try_files $uri $uri.html $uri/ /index.html;
  }

  error_page 404 /404.html;
}

Responder2

A configuração abaixo fornece o seguinte:

curl http://example.com/test-> saída: conteúdo de test.html

curl http://example.com/-> saída: conteúdo de index.html

server {
    listen      80;
    listen      [::]:80;
    server_name example.com;
    root        /var/www/html;
    index index.html index.php;

    location /test {
        try_files $uri.html $uri $uri/;
    }
   
    location / { 
        try_files $uri.html $uri $uri/;
    }   

    location ~ \.html$ {
        try_files $uri =404;
    }

  

    error_page 404 /404.html;
}

informação relacionada