我正在使用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;
}