-1
httpsで常にwordpress adminにアクセスしたいと思います。私はこれを使用します(私が読んだブログからコピー&ペースト)htaccess on wordpress:なぜhttpsが動作しないのですか
# Redirection to HTTPS
RewriteCond %{SERVER_PORT} ^80$ [OR]
RewriteCond %{HTTPS} =off
RewriteRule ^(.*)$ https://example.com/$1 [R=301,L]
# Redirection from www to non-www HTTPS
RewriteCond %{HTTP_HOST} ^www\.example\.com [NC]
RewriteRule ^(.*)$ https://example.com/$1 [R=301,L]
これは動作しません。私はいつもクロムの手でURLを修正しなければならない。