gpt4 book ai didi

.htaccess - 如何删除https

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:27:12 24 4
gpt4 key购买 nike

在我的网站中,只有少数页面使用 https。我不知道它来自哪里,但我必须删除那些 https。我怎样才能实现。

我当前的 .htaccess 设置

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /indiv/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /indiv/index.php [L]
RewriteCond %{HTTPS} on
RewriteRule ^/?$ http://%{SERVER_NAME}/indiv/ [R=301]
RewriteRule ^indiv/?$ http://%{SERVER_NAME}/indiv/ [R=301,L]
</IfModule>

最佳答案

用这个替换你所有的代码:

RewriteEngine On
RewriteBase /indiv/

RewriteCond %{HTTPS} on
RewriteRule ^ http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L,NE]

RewriteRule ^index\.php$ - [NC,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]

关于.htaccess - 如何删除https,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36563556/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com