我在CI中使用cron作业,但cron作业不是重定向到cron控制器(调度程序),而是重定向到默认控制器(内容)。以下是代码:
routes.php
$route['schedular'] = "schedular/index/$1";
$route['(:any)'] = "content/index/$1";
cpanel cron code
/opt/php54/bin/php /home/server_name/public_html/demo/cron.php schedular index
我做错了什么?欢迎任何帮助/建议。提前谢谢。
答案 0 :(得分:0)
尝试将您的cron任务指向您想要直接运行的控制器及其功能,而不是从任何其他位置重定向