Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将流量从 mysite.com 重定向到 mysite.com/folder,但还要在所有页面上强制执行 SSL。
目前我们在 httpd.conf 中有这个我们从某个地方的样本中找到的,但我不认为它一直都在正常工作。
RewriteEngine on RewriteRule ^/$ https://www.mysite.com/folder/ [R]
如果请求是针对的^/$唯一匹配/项,即站点的根目录。其他任何东西都不匹配。试试.*吧。
^/$
/
.*
注意:如果这个重写规则对 HTTP 和 HTTPS 版本都有效,那会让你进入一个无限的重定向循环。在这种情况下,您可能还需要某种 RewriteCond 测试。