Do GitHub pages support PHP?

后端 未结 4 2110
说谎
说谎 2020-12-01 18:33

Thank you for taking the time to review my request for help.

I\'ve been using gh-pages to work on a build for a static site and thee server has worked amazing for m

4条回答
  •  感情败类
    2020-12-01 19:07

    A static site cannot by definition support PHP.

    • Static websites serve content directly from the web-server’s file-system exactly as stored.

    • Dynamic websites generate content live per each request. The request is delegated to a running web-application that builds the content.

    What is a Static Website

    You might be interested in PieCrust. It is a static site generator.

提交回复
热议问题