我正在使用Linux。有一些域,例如:
/home/wwwroot/aaa.com
/home/wwwroot/bbb.com
/home/wwwroot/ccc.com
FILE1: /home/wwwroot/aaa.com/get.php
FILE2:/home/wwwroot/bbb.com/config.php
在 FILE1 中,我写道:
<?php
$data = file_get_contents('/home/wwwroot/bbb.com/config.php');
echo $data; //i can get the data.
?>
我认为是不安全的。你能告诉我如何使用 nignx config 配置域只允许访问其目录吗?