• olivernielsen

    (@mortalkiller666)


    Hi all,

    I’ve been struggling to make my website secure with a padlock. The site whynopadlock.com has helped me tremendously. However, the final step I cannot seem to get right.

    whynopadlock.com tells me that “Your webserver is not forcing the use of SSL.”. So, per their instructions I’ve added the following to my .htaccess code:

    RewriteEngine On
    RewriteCond %{HTTP_HOST} refashion\.dk [NC]
    RewriteCond %{SERVER_PORT} 80
    RewriteRule ^(.*)$ https://refashion.dk/$1 [R,L]

    However, whynopadlock.com still gives me the same error message.

    Any ideas?

    Thank you very much

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    Your site is happily padlocked for me and http redirects to https.

    Here’s the .htaccess stuff I use for SSL sites:

    RewriteEngine On 
    RewriteCond %{SERVER_PORT} 80 
    RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L,NE]
    Thread Starter olivernielsen

    (@mortalkiller666)

    @sterndata Odd that my site is not forcing HTTPS. BUT, the important thing is that it is padlocked. Thank you for checking ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘No Padlock Even After Fix’ is closed to new replies.