でssl_error_bad_cert_domainを示し、私はリダイレクトに問題があり、全体としてウェブ上で解決策を見つけることができませんでした....htaccessファイル:非(HTTPSで)WWWのWWWは、Firefox
The right domain is: https://www.fit-for-easa.com
The following redirections DO work:
http://fit-for-easa.com to https://www.fit-for-easa.com
http://www.fit-for-easa.com to https://www.fit-for-easa.com
But the problem is with:
https://fit-for-easa.com
In Chrome it is forwarded correctly to https://www.fit-for-easa.com -
but not in Firefox what seems very strange to me.
Firefox shows ssl_error_bad_cert_domain.
これが私の.htaccessですファイル:
AddType image/svg+xml svg svgz
AddEncoding gzip svgz
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule^https://www.fit-for-easa.com%{REQUEST_URI} [L,R=301]
RewriteBase/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
証明書がwww-Versionのみであり、www-Version以外のものではないという問題はありますか? Firefoxはこれを批判的だが、Chromeはそれを無視するのだろうか?
ありがとうございました!
(私はコードとしてテキストをマークし、私は二つ以上のリンクを投稿するのに十分な評判を持っていないことを申し訳ありません! - 私はそれに取り組んでいます)
ありがとうございました。証明書を更新します。 – user3009320