Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经设置了一个 OpenShift 帐户,并使用了 CodeIgniter 快速入门。在 OpenShift 管理控制台中,我点击进入我的 URL,CodeIgniter 的默认 welcome_message 将按预期显示。
现在我使用 WinSCP 连接到我的远程站点,并找到一个我不认识的文件夹结构。我已经尝试搜索 htdocs,以及“welcome_message.php”,但没有任何运气。
谁能指出我在哪里可以找到 OpenShift 上的 htdocs 文件夹等?
提前致谢。
您不应使用 WinSCP 将代码推送到您的应用程序。你当然可以,但你失去了很多功能。将代码推送到 OpenShift 的正确方法是通过 git。
要回答您的问题,应用程序根位于:
~/app-root/runtime/repo/php/
让我知道您对 CI 快速入门的看法。我写了将近 18 个月前,它可能需要更新。
--gs