Nginx:设置默认文件扩展名

时间:2011-10-13 21:53:16

标签: nginx

我将对nginx使用什么规则,因此我的默认文件扩展名是.php?

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

由于

1 个答案:

答案 0 :(得分: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;
  }
}