Title: SSL
Last modified: June 4, 2019

---

# SSL

 *  [dnmmalta](https://wordpress.org/support/users/dnmmalta/)
 * (@dnmmalta)
 * [7 years ago](https://wordpress.org/support/topic/ssl-69/)
 * Hi,
 * I am having issues with the below site sometimes:
    [https://swiftcarhire.com](https://swiftcarhire.com)
 * On certain occasion it is showing as NOT SECURE, whereas it has an SSL Certificate
   installed, this does not happen all the time but occassionally. I have checked
   the website on whynopadlock.com and it is showing as perfect.
 * Any ideas pls?
 * Regards,
    Matthew
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fssl-69%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/ssl-69/page/2/?output_format=md) [→](https://wordpress.org/support/topic/ssl-69/page/2/?output_format=md)

 *  [Stef](https://wordpress.org/support/users/serafinnyc/)
 * (@serafinnyc)
 * [7 years ago](https://wordpress.org/support/topic/ssl-69/#post-11605386)
 * Showing no errors on this side either. Console shows a perfectly secure SSL site.
   Next time you encounter it, write down the page and instance of it. Take a screenshot,
   etc. and look at console to see where it may be coming from.
    -  This reply was modified 7 years ago by [Stef](https://wordpress.org/support/users/serafinnyc/).
 *  Thread Starter [dnmmalta](https://wordpress.org/support/users/dnmmalta/)
 * (@dnmmalta)
 * [7 years ago](https://wordpress.org/support/topic/ssl-69/#post-11605401)
 * I have just received another client stating that it is not secure, attached is
   his screenshot:
    [Screenshot](https://ibb.co/yPfhqB6)
 *  Thread Starter [dnmmalta](https://wordpress.org/support/users/dnmmalta/)
 * (@dnmmalta)
 * [7 years ago](https://wordpress.org/support/topic/ssl-69/#post-11605411)
 * okay… i have just noticed that on this particular page the http does not resolve
   to https:
    [booking form](http://swiftcarhire.com/booking-form/)
 * Any ideas why pls?
 *  [Stef](https://wordpress.org/support/users/serafinnyc/)
 * (@serafinnyc)
 * [7 years ago](https://wordpress.org/support/topic/ssl-69/#post-11605420)
 * It’s the way you’re calling to fontawesome and a font I see.
 * > [View post on imgur.com](https://imgur.com/a/GsUCYQm)
 *  Thread Starter [dnmmalta](https://wordpress.org/support/users/dnmmalta/)
 * (@dnmmalta)
 * [7 years ago](https://wordpress.org/support/topic/ssl-69/#post-11605446)
 * thanks for your kind reply, any ideas how to fix it pls?
 *  [Stef](https://wordpress.org/support/users/serafinnyc/)
 * (@serafinnyc)
 * [7 years ago](https://wordpress.org/support/topic/ssl-69/#post-11605460)
 * Look somewhere in your theme of how they call to those files. Check functions
   file, header, footer.
 *  Thread Starter [dnmmalta](https://wordpress.org/support/users/dnmmalta/)
 * (@dnmmalta)
 * [7 years ago](https://wordpress.org/support/topic/ssl-69/#post-11605478)
 * checked those files and haven’t found anything linking to fontawesome but yet
   again i’m not a developer.
 * Could it be that the below is affecting the way it resolves?
 * [General wordpress settings](https://imgur.com/7dTUw7f)
 *  [Stef](https://wordpress.org/support/users/serafinnyc/)
 * (@serafinnyc)
 * [7 years ago](https://wordpress.org/support/topic/ssl-69/#post-11605508)
 * There you go!
 *  Thread Starter [dnmmalta](https://wordpress.org/support/users/dnmmalta/)
 * (@dnmmalta)
 * [7 years ago](https://wordpress.org/support/topic/ssl-69/#post-11605525)
 * do they need to be both https?
 *  Thread Starter [dnmmalta](https://wordpress.org/support/users/dnmmalta/)
 * (@dnmmalta)
 * [7 years ago](https://wordpress.org/support/topic/ssl-69/#post-11605542)
 * i did set them up both as https
 * In my .htaccess file I have the below code:
 *     ```
       # BEGIN WordPress
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteBase /
       RewriteRule ^index\.php$ - [L]
       RewriteCond %{REQUEST_FILENAME} !-f
       RewriteCond %{REQUEST_FILENAME} !-d
       RewriteRule . /index.php [L]
       </IfModule>
   
       # END WordPress
       # BEGIN LiteSpeed
       <IfModule Litespeed>
       SetEnv noabort 1
       </IfModule>
       # END LiteSpeed
   
       # BEGIN WordPress
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteCond %{HTTP_HOST} swiftcarhire\.com [NC]
       RewriteCond %{SERVER_PORT} 80
       RewriteRule ^(.*)$ https://swiftcarhire.com/$1 [R,L]
       </IfModule>
       # END WordPress
       ```
   
 *  [Stef](https://wordpress.org/support/users/serafinnyc/)
 * (@serafinnyc)
 * [7 years ago](https://wordpress.org/support/topic/ssl-69/#post-11605545)
 * Yes. But know that you may also have to add a redirect in your htaccess as well.
 *     ```
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteCond %{HTTPS} off
       RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
       </IfModule>
       ```
   
 * Since I don’t know you’re entire make up I’m just throwing that out there.
 *  Thread Starter [dnmmalta](https://wordpress.org/support/users/dnmmalta/)
 * (@dnmmalta)
 * [7 years ago](https://wordpress.org/support/topic/ssl-69/#post-11605554)
 * done but problem is still persisting, my htaccess is looking like this now:
 *     ```
       # BEGIN WordPress
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteBase /
       RewriteRule ^index\.php$ - [L]
       RewriteCond %{REQUEST_FILENAME} !-f
       RewriteCond %{REQUEST_FILENAME} !-d
       RewriteRule . /index.php [L]
       </IfModule>
   
       # END WordPress
       # BEGIN LiteSpeed
       <IfModule Litespeed>
       SetEnv noabort 1
       </IfModule>
       # END LiteSpeed
   
       # BEGIN WordPress
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteCond %{HTTP_HOST} swiftcarhire\.com [NC]
       RewriteCond %{SERVER_PORT} 80
       RewriteRule ^(.*)$ https://swiftcarhire.com/$1 [R,L]
       </IfModule>
       # END WordPress
   
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteCond %{HTTPS} off
       RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
       </IfModule>
       ```
   
 *  [Stef](https://wordpress.org/support/users/serafinnyc/)
 * (@serafinnyc)
 * [7 years ago](https://wordpress.org/support/topic/ssl-69/#post-11605593)
 * It should look like this
 *     ```
       # BEGIN WordPress
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteBase /
       RewriteRule ^index\.php$ - [L]
       RewriteCond %{REQUEST_FILENAME} !-f
       RewriteCond %{REQUEST_FILENAME} !-d
       RewriteRule . /index.php [L]
       </IfModule>
       # END WordPress
   
       # BEGIN LiteSpeed
       <IfModule Litespeed>
       SetEnv noabort 1
       </IfModule>
       # END LiteSpeed
   
       #301 from HTTP to HTTPS
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteCond %{HTTPS} off
       RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
       </IfModule>
       #END 301
       ```
   
 *  Thread Starter [dnmmalta](https://wordpress.org/support/users/dnmmalta/)
 * (@dnmmalta)
 * [7 years ago](https://wordpress.org/support/topic/ssl-69/#post-11605611)
 * thanks for your reply, i think that i have managed to make it work with this 
   code just before you replied, can you kindly check if it is ok, if not i will
   use your code:
 *     ```
       # BEGIN WordPress
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteBase /
       RewriteRule ^index\.php$ - [L]
       RewriteCond %{REQUEST_FILENAME} !-f
       RewriteCond %{REQUEST_FILENAME} !-d
       RewriteRule . /index.php [L]
       </IfModule>
   
       # END WordPress
       # BEGIN LiteSpeed
       <IfModule Litespeed>
       SetEnv noabort 1
       </IfModule>
       # END LiteSpeed
   
       # BEGIN GD-SSL
       <IfModule mod_rewrite.c>
       Options +FollowSymLinks
       RewriteEngine On
       RewriteCond %{HTTPS} !=on
       RewriteCond %{HTTP_USER_AGENT} ^(.+)$
       RewriteCond %{SERVER_NAME} ^swiftcarhire\.com$ [OR]
       RewriteCond %{SERVER_NAME} ^www\.swiftcarhire\.com$
       RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
       Header add Strict-Transport-Security "max-age=300"
       </IfModule>
       # END GD-SSL
       # BEGIN WordPress
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteBase /
       RewriteRule ^index\.php$ - [L]
       RewriteCond %{REQUEST_FILENAME} !-f
       RewriteCond %{REQUEST_FILENAME} !-d
       RewriteRule . /index.php [L]
       </IfModule>
       # END WordPress
   
       # BEGIN WordPress
       RewriteEngine On
       RewriteCond %{HTTP_HOST} swiftcarhire\.com [NC]
       RewriteCond %{SERVER_PORT} 80
       RewriteRule ^(.*)$ https://swiftcarhire.com/$1 [R,L]
       # END WordPress
       ```
   
 *  [Stef](https://wordpress.org/support/users/serafinnyc/)
 * (@serafinnyc)
 * [7 years ago](https://wordpress.org/support/topic/ssl-69/#post-11605621)
 * Yes, but don’t be using WORDPRESS for your comments 😉
 * Comment correctly related to what it is your adding. In case someone else comes
   after you. You can’t have WORDPRESS for every comment line.
 *     ```
       # This is
   
       # end this
   
       #security mod start
   
       #security mod end
       ```
   
 * so on
    -  This reply was modified 7 years ago by [Stef](https://wordpress.org/support/users/serafinnyc/).

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/ssl-69/page/2/?output_format=md) [→](https://wordpress.org/support/topic/ssl-69/page/2/?output_format=md)

The topic ‘SSL’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 16 replies
 * 2 participants
 * Last reply from: [dnmmalta](https://wordpress.org/support/users/dnmmalta/)
 * Last activity: [7 years ago](https://wordpress.org/support/topic/ssl-69/page/2/#post-11605637)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
