Home  >  Article  >  Operation and Maintenance  >  How to configure Nginx to prohibit access to a certain directory or file

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

PHPz
PHPzforward
2023-05-18 08:04:152846browse

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!

Statement:
This article is reproduced at:yisu.com. If there is any infringement, please contact admin@php.cn delete