为XAMPP配置SSL

时间:2016-07-01 20:27:28

标签: apache ssl xampp

我有一个使用SSL的 wordpress 项目,我想在XAMPP上运行它。

我修改了httpd-vhosts.conf和我的httpd-ssl.conf,为这个特定的wordpress项目创建了一个虚拟主机。

这是我的httpd-vhosts.conf文件内容

<VirtualHost *:443>
    DocumentRoot "D:/xampp/htdocs/wordpresssoftd"
    ServerName mysite.local
    ServerAlias mysite.local
    SSLEngine on
    SSLCertificateFile conf/ssl.crt/server.crt
    SSLCertificateKeyFile conf/ssl.key/server.key 
    <Directory "D:/xampp/htdocs/wordpresssoftd">
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory>
</VirtualHost>

wordpresssoftd包含我的项目文件。

我还在httpd-ssl.conf中重命名了文档根目录。

当我运行网站时,CSS和JS文件没有被加载,但wordpress网站的索引页面没有CSS和JS。

I have added screenshot from Google Chrome Web Inspector

我已经检查过这些链接无效

Enabling SSL with XAMPP

Setting up SSL on a local xampp/apache server

How do I use https (SSL) in XAMPP while using virtual hosts

http://www.leonardaustin.com/blog/technical/how-to-enable-ssl-on-xampp-with-vhosts/

https://jaswanttak.wordpress.com/2010/04/15/configure-ssl-on-xampp-and-windows/

1 个答案:

答案 0 :(得分:0)

解决了它。一切都设置正确。

而不是使用

访问我的网站
https://localhost/wordpresssoftd

我用过

https://localhost