如何在heroku上访问我的PHP应用程序

时间:2017-07-12 20:55:05

标签: php git web-services codeigniter heroku

大家好我已经在heroku上完成了我的PHP应用程序的部署,但我不知道我现在需要做什么才能访问我的应用程序,在我的本地主机上(Xampp)我曾经使用此URL访问{{3}并按照以下步骤操作:

$ heroku login
$ heroku git:clone -a sistemacrm
$ cd sistemacrm
$ git add .
$ git commit -am "make it better"
$ git push heroku master

我收到此网址https://localhost/sistemacrm/,当我打开此处时收到错误404,我也开发了这个带有codeigniter的应用程序

1 个答案:

答案 0 :(得分:2)

您可以从以下网址获取Heroku托管应用的网址:

  1. 构建日志的结束,在执行git push heroku master之后,应在那里指示URL(假设构建/部署成功)。类似的东西:

      

    启动......完成了   https://your-app-name.herokuapp.com/部署到Heroku

  2. Heroku的信息中心中应用的“设置”页面。根据您发布的网址,它可能位于https://dashboard.heroku.com/apps/sistemacrm/settings。然后转到"域和证书"部分找到这样的东西:

      

    您的应用可在https://your-app-name.herokuapp.com/

    找到
  3. 我建议你阅读documentation for deploying PHP apps on Heroku 因为它明确地描述了如何访问您的应用程序。