5

.htaccess ファイルで SSLCipherSuite を指定しようとしていますが、変更が反映されていないようです。私は共有ホスティング アカウントで実行しているため、.htaccess にのみアクセスでき、サーバー/仮想ホストの構成ファイルにはアクセスできません。Apache のドキュメントによると、このディレクティブは .htaccess コンテキストで機能します。私のサーバーは Apache 2.2 を実行しています。ここに私の完全な .htaccess ファイルがあります:

RewriteEngine on
ErrorDocument 404 /404.html

# map index.html to root dir
RewriteCond %{HTTP_HOST} ^automsw\.com$ [OR,NC]
RewriteCond %{HTTP_HOST} ^www\.automsw\.com$ [NC]
RewriteRule ^index\.html$ "https\:\/\/www\.automsw\.com\/" [R=301,L]

# map index.html in sub-directories to that directory
RewriteCond %{HTTP_HOST} ^automsw\.com$ [OR,NC]
RewriteCond %{HTTP_HOST} ^www\.automsw\.com$ [NC]
RewriteRule ^(.*)/index\.html$ "https\:\/\/www\.automsw\.com\/$1/" [R=301,L]

# map non-www to www and http to https
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^automsw.com$ [NC]
RewriteRule ^(.*)$ "https\:\/\/www\.automsw\.com\/$1" [R=301,L]

#SSLCipherSuite "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA+RC4 EECDH EDH+aRSA 3DES RC4 !aNULL !eNULL !LOW !MD5 !EXP !PSK !SRP !DSS +3DES 3DES +RC4 RC4"
SSLCipherSuite ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:!LOW:!SSLv2:!EXPORT

私はいくつかの異なる SSLCipherSuite 値を試しましたが、次のサーバーテストで決定された結果を変えるものはありません:

https://www.ssllabs.com/ssltest/analyze.html?d=automsw.com

これは可能ですか、それとも何か間違っていますか?

前もって感謝します。

4

1 に答える 1