NGINX:在 .php 文件上返回 403
我正在尝试从 WordPress 安装中提供静态文件,并且使用放置在 NGINX 文件夹中的符号链接指向 wp-content/uploads 文件夹。
每个文件都被正确提供,但不幸的是,有些插件在此文件夹中包含一些 .php 文件,因此 NGINX 将它们作为静态文件提供,从而导致潜在的安全风险。
有什么方法可以指示 NGINX 在尝试访问 .php 文件时返回 Forbidden 403 错误吗?
提前致谢。
I'm trying to serve the static files from a Wordpress installation and I'm using a symbolic link placed in the NGINX folder pointing to the wp-content/uploads folder.
Every file is being served correctly, but unfortunately there are some plugins that include some of their .php files inside this folder, so NGINX serve them as static files, leading to potential security risks.
Is there any way to instruct NGINX to return a Forbidden 403 error when trying to access .php files?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
排除位置块下的扩展名。
您可以使用子位置E.G.
You can exclude an extension under a location block using a sub location
E.G.