SSL Not working

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
3 Jahre weitere
Hello everyone,
I installed the SSL certificate and then I wasn't getting the secure lock on the URL bar. I was told to add some coding on the webconfig so now I get the lock but when i try to login or the shopping cart i'm getting broken link with this: This page isn’t working city.shoes redirected you too many times.
Try clearing your cookies.
ERR_TOO_MANY_REDIRECTS

The code I was told to include was this:
</httpProtocol>
      <!-- code begin here
  <rewrite>
      <rules>
        <rule name="Redirect to https" stopProcessing="true">
          <match url=".*" />
          <conditions>
            <add input="{HTTPS}" pattern="off" ignoreCase="true" />
          </conditions>
          <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" appendQueryString="false" />
        </rule>
      </rules>
  </rewrite>
      <!-- code end here
  </system.webServer>
</configuration>
3 Jahre weitere
You should not add this code to the web.config file. Please remove it

Then go to admin area > configuration > stores > your store details. And tick the "SSL enabled" checkbox
3 Jahre weitere
I recently had this issue with version 4.2. I upgraded to 4.3, then refreshed the cache and restarted the site a few times and it eventually resolved this issue among a few other bugs.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.