First time posting here so hopefully Ive got the right question in the right place.
I recently moved servers and then decided to add a ssl certificate. Since the move traffic has plummeted.
Looking at the site it seems that when you hit a site it doing some sort of redirect.
On the iPhone this is most obvious as hitting an article on http://essentialmac.co.uk you’ll see the padlock for a moment and then it looks like its redirecting and you’re served a https page but with no padlock up in the url area.
This is my .htaccess
# BEGIN W3TC Browser Cache
<IfModule mod_deflate.c>
<IfModule mod_headers.c>
Header append Vary User-Agent env=!dont-vary
</IfModule>
AddOutputFilterByType DEFLATE text/css text/x-component application/x-javascript application/javascript text/javascript text/x-js text/html text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon application/json
<IfModule mod_mime.c>
# DEFLATE by extension
AddOutputFilter DEFLATE js css htm html xml
</IfModule>
</IfModule>
# END W3TC Browser Cache
# 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
Can any please, please help. Thanks.