disable xampp redirect http to https(禁用 xampp 将 http 重定向到 https)
问题描述
我在本地主机的 xampp 中为 wordpress 创建了 VirtualHost,并将此代码添加到 httpd-vhosts.conf 中:
I created VirtualHost at my xampp in localhost for wordpress and add this code in 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 ?谢谢
but when enter http://mysitefolder in browser it's aout redirect to https://mysitefolder and not load my site. how can disable https and only using http ?thank you
推荐答案
我没有足够的声誉来发表评论,但是如果您使用的是 Chrome 和 .dev
本地服务器域,请查看在这篇文章.Chrome 已购买 .dev
gTLD,现在强制重定向到 https://
.如果是这样,请考虑使用 .test
或其他一些域.一个快速的测试方法是尝试其他浏览器.
I don't have enough reputation to comment but if you are using Chrome and a .dev
local server domain, have a look at this post. Chrome have purchased the .dev
gTLD and now force the redirect to https://
. If so, consider using .test
or some other domain. A quick way to test it would be to try another browser.
这篇关于禁用 xampp 将 http 重定向到 https的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:禁用 xampp 将 http 重定向到 https
基础教程推荐
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01