cron作业未检索网页内容?

时间:2018-09-16 21:40:55

标签: php cron cron-task

我正在尝试使用cron作业来执行使用url(GET'https://www.t......com/bonus/go')的每日计算,并将结果链接到我的电子邮件。

但是我在电子邮件中得到了此结果:

</head>
<body>
  <div id="sf-resetcontent" class="sf-reset">
  <h1>Sorry, the page you are looking for could not be found
  </h1>
  </div>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

这意味着您指向的URL无效,不存在或无法从cron运行的上下文访问。

请检查URL是否显示在网络浏览器上。如果您没有运行cron的网络浏览器,请在命令行中使用curl进行检查:

$ curl -L {your-url}
  • -L 用于允许curl跟随重定向。