我有一个使用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。
我已经检查过这些链接无效
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/
答案 0 :(得分:0)
解决了它。一切都设置正确。
而不是使用
访问我的网站https://localhost/wordpresssoftd
我用过
https://localhost