Nginx:设置默认文件扩展名

Chi*_*hip 5 nginx

我会对nginx使用什么规则,所以我的默认文件扩展名是.php?

我目前使用www.mywebsite.com/ home.php访问页面,但我想使用www.mywebsite.com/ home

谢谢

kol*_*ack 8

假设您还想提供静态文件,您可以使用以下内容:

server {
  server_name example.com;

  # Set the docroot directly in the server
  root /var/www;

  # Allow index.php or index.html as directory index files
  index index.html index.php;

  # See if a file or directory was requested first.  If not, try the request as a php file.
  location / {
    try_files $uri $uri/ $uri.php?$args;
  }

  location ~ \.php$ {
    # If the php file doesn't exist, don't pass the request to php, just return a 404
    try_files $uri =404;

    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME $request_filename;

    fastcgi_pass your_php_backend_address;
  }
}
Run Code Online (Sandbox Code Playgroud)