1111111
-------------------------
回 1楼(火蓝云) 的帖子
按照你说的操作了,还是不行,页面没有样式,乱码,还有代码,下面是Apache具体的部分配置,帮忙看下,是不是我配置的有问题,谢谢了,我是用apache作https访问
httpd.conf配置:
ServerRoot "/usr/local/apache"
......
#<Directory />
# AllowOverride none
# Require all denied
#</Directory>
....
DocumentRoot "我项目网站根目录"
<Directory "我项目网站根目录">
# Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
.......
# Secure (SSL/TLS) connections
Include conf/extra/httpd-ssl.conf
下面是httpd-ssl.conf的配置:
<VirtualHost 网站域名:8443>
DocumentRoot "我项目网站根目录"
ServerName 网站域名:8443
ServerAdmin
you@example.com
ErrorLog "/usr/local/apache/logs/error_log"
TransferLog "/usr/local/apache/logs/access_log"
SSLEngine on
SSLCertificateFile "证书"
SSLCertificateKeyFile "证书"
SSLCertificateChainFile "证书"
</VirtualHost>
-------------------------
回 4楼(火蓝云) 的帖子
不是网站的问题,我在阿里云申请了SSL证书,本来想用apache配置,总是出现这样问题,配置不好,最后只好选择tomcat配置,都正常运行,网站也正常。所以我认为还是apache配置的有问题