.htaccess allow localhost problem

后端 未结 5 1250
走了就别回头了
走了就别回头了 2020-12-08 22:05

Here is the situation...

I have a cron job scheduled to run that is used to backup my database. Because of the way php is installed, I\'m having to use lynx to hit t

5条回答
  •  情歌与酒
    2020-12-08 22:40

    Require local

    The local provider allows access to the server if any of the following conditions is true:

    • the client address matches 127.0.0.0/8
    • the client address is ::1
    • both the client and the server address of the connection are the same

    This allows a convenient way to match connections that originate from the local host:

    Require local

提交回复
热议问题