php – 禁用xampp将http重定向到https

前端之家收集整理的这篇文章主要介绍了php – 禁用xampp将http重定向到https前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在localhost的xampp上为wordpress创建了VirtualHost,并在httpd-vhosts.conf中添加了这段代码
<VirtualHost *:80>
ServerAdmin webmaster@mysitefolder
DocumentRoot "E:/xampp/htdocs/mysitefolder"
ServerName mysitefolder
ErrorLog "logs/mysitefolder-error.log"
CustomLog "logs/mysitefolder-access.log" common
</VirtualHost>

但是当在浏览器中输入http://mysitefolder时,它会重定向https://mysitefolder而不会加载我的网站.如何禁用https并仅使用http?谢谢

我没有足够的声誉来评论,但如果您使用的是Chrome和.dev本地服务器域,请查看 this post. Chrome已购买.dev gTLD,现在强制重定向到https://.如果是这样,请考虑使用.test或其他域名.测试它的一种快速方法是尝试其他浏览器.
原文链接:https://www.f2er.com/php/136609.html

猜你在找的PHP相关文章