我怎么能redirect到https的子文件夹,例如http://example.com/vacation-rental/115到https://example.com/vacation-rental/115
在你的虚拟主机定义中使用这个:
<Location /vacation-rental/115> RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*)$ https://example.com%{REQUEST_URI} </Location>
<Location /vacation-rental/115> SSLRequireSSL </Location>
并在这里看到。