0

我的 htacess 中有以下代码,我认为它与 https 冲突,因为它不断重定向到 http

rewritecond %{http_host} ^mysite.com [nc]
  rewriterule ^(.*)$ http://www.mysite.com/$1 [r=301,nc]

有谁知道我如何可以停止 https 重定向并保持它 https 如果那是输入的内容?

4

1 回答 1

0

只需将其更改为“https”而不是“http”:

rewritecond %{http_host} ^mysite.com [nc]
  rewriterule ^(.*)$ https://www.mysite.com/$1 [r=301,nc]
于 2013-10-02T00:23:59.500 回答