🕸

.htaccessを使ったHTTPSリダイレクトのサンプルコード

2024/10/06に公開

サンプルコード

RewriteEngine On
RewriteBase /

# HTTPリクエストをすべてHTTPSにリダイレクト
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://example.com/$1 [R=301,L]
GitHubで編集を提案

Discussion