我有这样的结构:
---index.php (Slim index file)
---view
------css
------js
------img
------header.php
------footer.php
------index.php
------student
-----index.php
-----enrolment.php
-----course
------index.php
------exam.php
header.php和footer.php由学生和课程文件夹中的所有视图文件使用。我可以使用以下方法将它们包含在我的本地机器中: 包括“/view/header.php”;和 包括“/view/footer.php”;
但是在PHPFog云上部署时似乎无法工作。 这是出现的错误:
Code: 2
Message: include(/view/header.php): failed to open stream: No such file or directory
File: /var/fog/apps/app58082/calert.phpfogapp.com/view/student/index.php
任何想法该怎么做?