HTTPS 和 500 内部服务器错误
我刚刚在我的服务器上安装了 SSL,我可以使用或不使用 https 访问我的所有文件夹。
现在,我将一个 php 文件放在一个文件夹中。我可以在没有 https 的情况下访问它,但是当我想使用 httpS 打开安全连接时,我遇到:500 内部服务器错误。仅当此文件夹的内容是 php 项目时,如果不是(例如:html 项目),它将用 https 很好地打开
我在此文件夹上有任何 .htaccess 。
我该如何解决这个问题?
提前致谢。
I Just installed SSL on my server, I can access to all my folder with and without https.
Now, I put a php file on a folder. I can access to it without https, but when I want to open a secure connexion with httpS I have : 500 Internal Server Error. Only if the content of this folder is a php project, if not (e.g.: html project) it will open very well with https
I have any .htaccess on this folder.
How can I fix that?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你必须正确配置你的 htaccess,我的意思是让它打开。
You have to configure you htaccess properly, by that i mean to get it on.
这听起来像是
httpd-ssl.conf
中的Virtual Host
指令未正确配置为处理 PHP 文件。我的猜测是用户/权限问题或缺少处理程序指令来告诉 Apache 如何处理 .php 文件。问候
This sounds like the
Virtual Host
directive within thehttpd-ssl.conf
isn't properly configured to handle PHP files. My guess would be a user/permission issue or the lack of a handler directive that would tell Apache how to handle .php files.Regards