SSL重定向仅适用于子目录

时间:2017-01-30 14:35:11

标签: ssl nginx

我已将所有www重定向到非www以及为我的网站启用了https / ssl。

我的目标是为此根级别(非子域)上的域/站点启用https / ssl,但启用ssl以及将http://domain.com/shop任何https://domain.com/shop流量重定向到http://domain.com子目录/商店

基本上,网站的所有流量都应为301到https://domain.com/shop,并且/ shop子目录的所有流量都应为a forum discussion

根网站是WordPress / shop是Magento

以下是我在/ etc / nginx / sites-available

中对domain.conf所拥有的内容
where upper(col_name) like '%EARTH%'
and upper(col_name) like '%GALAXIES%'

1 个答案:

答案 0 :(得分:0)

在wordpress的.htaccess中添加以下行:

RewriteEngine on
RewriteCond %{HTTPS} !=on [NC]
RewriteCond %{REQUEST_URI} /shop/
RewriteRule ^(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301, L]