我如何将子文件夹重定向到 https 例如http://example.com/vacation-rental/115到https://example.com/vacation-rental/115
答案1
在您的 vhost 定义中使用它:
<Location /vacation-rental/115>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*)$ https://example.com%{REQUEST_URI}
</Location>
答案2
<Location /vacation-rental/115>
SSLRequireSSL
</Location>
看看这里。