ここに私が持っているものがあります:
質問:VirtualHostを使用して単純な http://site.com を https://site.comにリダイレクトする方法定義?
PS:SFに関する後の回答で見つけようとしましたが、ニースの解決策が見つかりません。
ありがとう。
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_Host}%{REQUEST_URI}
ディレクトリに基づいて、mod_aliasおよび Redirect を使用できます。リンクされたドキュメントは、追加の詳細を識別します。
<Directory /path/to/site>
Redirect /service https://foo2.example.com/service
</Directory>