在共享虚拟主机(在 CPanel 中)中运行 cronjob 是否支持 mod_rewrite'd URL?
我目前正在开发一个 PHP 应用程序,其中有 SEO 友好的 URL,我计划在完成生产阶段(在本地主机之外)购买一些共享的虚拟主机并为其中一个文件安排一个 cronjob。
现在我想知道共享网络托管 CPanel cronjob 调度程序是否支持 mod_rewrite'd URL,或者我需要传递直接文件路径吗?
I'm currently developing a PHP application where I have SEO friendly URLs, I'm planning on once finished production stage (off localhost) to purchase some shared webhosting and schedule a cronjob for one of the files.
Now I'm wondering does the shared webhosting CPanel cronjob scheduler support mod_rewrite'd URLs or will I need to pass the direct file path?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想通过命令行运行 php 脚本,那么
您将需要传递完整的文件路径。
但是,如果脚本可以通过 Web 请求运行,那么您可以使用
wget
来使用文件的 URL,这将是 SEO 友好的 URLIf you want to run the php script via command line, then
You will need to pass the full file path.
But if the script can be run via web request then you can use
wget
to use the URL of the file which will be the SEO friendly one