How to configure Nginx to prohibit access to a certain directory or file

PHPz
Release: 2023-05-18 08:04:15
forward
2845 people have browsed it

Copy code The code is as follows:

location = /config/ {
return 404;
}
location =/config.ini{
return 404;
}

This can only prohibit access to //www.jb51.net/path/

Copy code The code is as follows:

location = /path/ {
return 404;
}

Forbidden to access //www.jb51.net/path/test.php

Copy code The code is as follows:

location ^ ~ /test
{
deny all;
}

Maybe test needs to be replaced with path.

The above is the detailed content of How to configure Nginx to prohibit access to a certain directory or file. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!