.htaccess将所有子文件夹重定向到http(主域除外)

时间:2018-06-21 08:12:18

标签: .htaccess redirect subdirectory

你好! 请帮我! 我有一个主域“ domain.com” 我有一个子文件夹

-folder_one
--folder_two
--folder_three
--folder_four
...

我如何使用htaccess将用户从http://example.com重定向到https://example.com,并且如果用户转到该域中的任何子文件夹,则将其重定向到该http的
https://example.com/folder_onehttps://example.com/folder_one


我已经做到了,但是我得到了永久重定向。 请帮忙。
非常感谢!

1 个答案:

答案 0 :(得分:0)

这将主域重定向到http,将子文件夹重定向到https。我要完全相反

RewriteCond %{HTTP_HOST} !^example\.com$ [NC,OR]
RewriteCond %{HTTPS} on 
RewriteRule ^ http://example.com%{REQUEST_URI} [NE,R=301,L]