0

我的应用程序中有文件夹图像、css、类、js,包括。如果有人访问该文件夹 -->403 Forbidden

我想要自定义这个输出403 Forbidden--->404 Not Found

我会试试这段代码

location ~ /(.*)/{ return 404; }

它是成功的,404 Not Found 但我的图像、css、class、js 的输出在我的应用程序中包含 LOST。

请帮帮我。

4

1 回答 1

0
location  = /THAT_FOLDER/ { return 404; }

Directives with the "=" prefix that match the query exactly (literal string). 
If found, searching stops.

参考:http ://wiki.nginx.org/HttpCoreModule#location

于 2013-01-18T05:50:59.553 回答