ssl证书安装完后,https访问后下载index文件,HTTP访问正常的。 ssl设置后自动下载根目录的index.php而不是载入

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

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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>

对我很有帮助,我要打赏:

打赏随意

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值