0

http の代わりに https を使用するように URL を強制的に書き換えるために、次の httaccess コンテンツを使用しています。

RewriteEngine on
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.mydomain.com/$1 [L]

しかし、それは常に取得しています, ページが正しくリダイレ​​クトされていません

Firefox has detected that the server is redirecting the request for this address
in a way that will never complete.     
This problem can sometimes be caused by disabling or refusing to accept
cookies.

私は他の多くのソリューションを使用してきましたが、常にこれを取得しています...

4

1 に答える 1

1

以下の .htaccess のコードを試してください

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

#uncomment the below two line if you need to append www
# RewriteCond %{HTTP_HOST} !^www\. [NC]
# RewriteRule ^ https://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
于 2012-10-27T16:54:09.927 に答える