Nginx中的web.config文件403自定义页面

时间:2019-01-30 11:09:23

标签: nginx

我正在使用nginx Web服务器,所有配置都在nginx.conf文件下进行。当我访问带有我的域的test.php,favicon.ico页面时,我能够看到自定义页面,但是当我访问web.config和.htaccess时,我没有得到自定义错误页面,它显示了nginx“ 403 Forbidden”页面。这是配置块:

location = /web.config  { deny all; }
                    error_page 403 404 = /custom.html;
                    location = /custom.html {
                     root /usr/local/nginx/html;
                   }

0 个答案:

没有答案