Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: .htaccess と mod_rewrite を使用して SSL/https を強制する
こんにちは、私は htaccess を変更するのが初めてです。各 http:// リクエストを https:// にリダイレクトするのを手伝ってくれる人はいますか? よろしくお願いします。
簡単に言えば:
RewriteEngine On # Rewrite all non-HTTPS requests to HTTPS. RewriteCond %{HTTPS} off RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R,L]