我已将其添加到 .htaccess
位于项目根目录的文件中:
<Files *.php>
Require host lamtakam.test lamtakam.com
Require ip ::1 95.216.xx.xx
</Files>
我曾经xx.xx
将我的真实 ip 隐藏在公共社区中,实际上,有数字而不是x
s。
现在我需要每天crontab
从同一台服务器调用一个文件(使用 cron 作业),如下所示:
0 22 * * * wget /path/to/file.php
但我得到这个错误:
--2020-09-13 13:33:55-- https://lamtakam.com/path/to/file.php
Resolving lamtakam.com (lamtakam.com)... 104.31.74.192, 172.67.174.239, 104.31.75.192, ...
Connecting to lamtakam.com (lamtakam.com)|104.31.74.192|:443... connected.
HTTP request sent, awaiting response... 403 Forbidden
2020-09-13 13:33:55 ERROR 403: Forbidden.
注意:我使用 Cloudflare,这些 IP 属于它:104.31.74.192, 172.67.174.239, 104.31.75.192
知道如何file.php
从同一台服务器访问它吗?(而不是来自其他任何地方)