有没有办法可以实现它,以便对基本网址A强制执行https方案,但对基本网址B不强制,除了维护两个单独的security.yml文件?
答案 0 :(得分:2)
RewriteCond %{HTTPS} !=on [OR]
RewriteCond %{HTTP_HOST} ^prod.yourdomain.com$ [NC]
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
现在只有prod.yourdomain.com会被重定向到https。