Nginx尝试加载不存在的目录

时间:2015-08-07 06:28:06

标签: nginx

当我输入mydomain.com/randomfolder或domain.com/somefolder时,它只会加载索引页

我的问题是有更好的方法来配置它以将用户重定向到错误页面而不是仅仅尝试加载目录或处理请求吗?

server {
#listen 80 default_server;
#listen [::]:80 default_server ipv6only=on;
listen 443 ssl;

root /var/www;
autoindex on;
index index.html index.htm index.php;

server_name mydomain.com;

ssl_certificate    /etc/nginx/ssl/mydomain.com.crt;
ssl_certificate_key    /etc/nginx/ssl/mydomain.com.key;

location / {
    # First attempt to serve request as file, then
    # as directory, then fall back to displaying a 404.
    try_files $uri $uri/ /index.php;
    # Uncomment to enable naxsi on this location
    # include /etc/nginx/naxsi.rules
}

location /doc/ {
    alias /var/www/;
    autoindex on;
    allow 127.0.0.1;
    allow ::1;
    deny all;
}

location ~ \.php$ {
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
    # With php5-cgi alone:
    #fastcgi_pass 127.0.0.1:9000;
    # With php5-fpm:
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    fastcgi_read_timeout 300;
    fastcgi_index index.php;
    include fastcgi.conf;
}

1 个答案:

答案 0 :(得分:0)

这是发布配置的正常行为。

如果您想更改它,违规指令是:

 try_files $uri $uri/ /index.php;

而且,如果你的指示冒犯了你,就把它拔出来。

这是令人反感的原因是因为它说要使用每个 http请求执行以下操作:

  1. 首先按原样尝试请求
  2. 然后尝试在最后添加/
  3. 最后,尝试取代/index.php
  4. 你可以砍掉第3个项目,或完全摆脱它。

    您还可以添加custom 404 page

    error_page 404 /path/to/my/404.html ;
    

    但是您必须在请求失败之前摆脱/index.php甚至整行中的try_files,只有在失败时才会显示自定义404。