0

我有一个运行 python 的 OpenShift 服务器。但是,当我通过 SSL 调用 php 时,php 解释器开始运行。它表明可能还有一种方法可以运行 php。但是,如果 HTML 对我来说足够公平的话。现在,我不知道如何能够访问我服务器上的 html 文件,因为当我尝试时,我总是得到404 not found. 我读过有关放置.htaccess文件的解决方案:

AddType application/x-httpd-php .html

我不确定将这个文件放在哪里,但放在 .html 文件的文件夹中仍然没有帮助。

您能否帮助我如何使 .html 文件在运行 Python 的 OpenShift 服务器上可访问?php怎么样?

4

1 回答 1

0

将 .html 文件放入您的 app-root/repo/wsgi/static 文件夹(或您的 git 存储库中的该文件夹)。如果您希望它像 app-domain.rhcloud.com/file.html 一样显示,则必须在 wsgi 文件夹中使用 .htaccess 文件,该文件将 file.html 重写为 static/file.html

于 2013-12-21T05:19:49.653 回答