大家好 我在php zendframework框架里面 的.htaccess分布式配置文件里面设置让页面重定向为https访问 也就是将http替换为https 我的代码为 但是有问题 请大家帮我看看 谢谢
rewriterule ^.*$ - [nc,l]
rewriterule ^.*https://$ index.php [nc,l]
------解决方案--------------------
rewriterule ^http ^htts [r]
------解决方案--------------------
rewriterule ^http://(.+) ^https://$1 [l]
