我正在尝试使用nginx error_page指令(link)来显示错误页面。
到目前为止,这是我的代码:
error_page 404 /site/404.html;
location /site/404.html {
try_files $uri =404;
break;
}
但我真正想要的只是在网址为www.example.com/example时显示此404.html页面。如果网址仅为www.example.com,则不会显示此404.html错误页面。是否可以使用error_page指令实现此行为?