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.
私のマシン(ローカル)にサイトがあります。 ユーザーは、HTTP と HTTPS の両方を使用してアクセスしていました。現在、HTTPS 構成に問題があります。[動作していません] HTTPS リクエストを一時的に HTTP ポートにリダイレクトすることはできますか?
.htaccess ファイルに次のコードを貼り付けます。
RewriteEngine On RewriteCond %{HTTPS} on RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]