gpt4 book ai didi

php - 将 CodeIgniter 网站移动到新域但同一主机

转载 作者:太空宇宙 更新时间:2023-11-03 14:50:13 25 4
gpt4 key购买 nike

我正在将我的 Web 应用程序移动到同一主机上的新域,我已经编辑了 .htaccess 文件,现在看到一个重定向循环。新域没有 HTTPS,但旧域有 SSL 证书。我想对新域不使用 SSL。这是我在 .htaccess 文件中的内容:

RewriteEngine On 
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.mywebsite.com/$1 [R=301,L]

#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn't true it sends the
#request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|public|images|robots\.txt|css)
RewriteRule ^(.*)$ index.php/$1 [L]

最佳答案

应该可以注释掉 https RewriteRule

尝试改变

RewriteCond %{SERVER_PORT} 80 
RewriteRule ^(.*)$ https://www.mywebsite.com/$1 [R=301,L]

#RewriteCond %{SERVER_PORT} 80 
#RewriteRule ^(.*)$ https://www.mywebsite.com/$1 [R=301,L]

或者保留备份并删除那些行

关于php - 将 CodeIgniter 网站移动到新域但同一主机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35108636/

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