标签: nginx hide http-status-code-404 http-status-code-403
我的应用程序包含文件夹图像,css,class,js。 如果有人访问该文件夹 - > 403 Forbidden
403 Forbidden
我想自定义此输出403 Forbidden ---> 404 Not Found
404 Not Found
我会试试这段代码
location ~ /(.*)/{ return 404; }
这是成功的,输出404 Not Found 但是我的图片,css,class,js,在我的申请中包括LOST。
请帮帮我。