ssl证书安装完后,https访问后下载index文件,HTTP访问正常的。 ssl设置后自动下载根目录的index.php而不是载入
apache 日志 still did not exit, terminating forcefully
Apache keeps saying: You configured HTTP(80) on the standard HTTPS(443)
Listen 443 https
ProxyPassMatch ^/(.*.php)$ fcgi://127.0.0.1:2000/E:\WebPhp\TCPC2019$1
DirectoryIndex index.html index.php
设置 ProxyPassMatch 代理后提示:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at admin@example.com to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
原因:ssl php角本未能解析:
解决办法 :在*:443增加如下:
<VirtualHost *:443>
DocumentRoot "${DROOT}"
##添加支持对php脚本解析
<Files ~ "\.php$">
Options FollowSymLinks ExecCGI
AddHandler fcgid-script .php
FcgidWrapper "E:/BtSoft/WebSoft/php/5.6/php-cgi.exe" .php
</Files>
#endPHP
DirectoryIndex index.html index.php
问题解决。
以下为参考:
<Directory "${DROOT}">
#Options FollowSymLinks ExecCGI
Options +Indexes +FollowSymLinks +ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
对我很有帮助,我要打赏:

博客主要讲述了SSL证书安装后出现的问题,如HTTPS访问下载index文件、设置后自动下载index.php而非载入,设置代理后提示内部服务器错误等。原因是SSL PHP脚本未能解析,还给出了在*:443增加相关设置的解决办法。
1008

被折叠的 条评论
为什么被折叠?



