I have been running a website camping.uk-directory.com which has tanking in SERPS over last two years.
-
Hi Nigel,
And thank you for your comments. Would you mind elaborating on what you mean by;
"Your home page has little to no content with an overly contrived title and descriptions - this goes for all pages."
Regards
Baggy
-
Hi Baggy
In order to rank for a keyword or tight collection of contextually similar keywords, you need to create some content from the H1 down to ~300 words of highly descriptive content to support the page title.
You have to be very clear what each page is about and write about that.
You have completely cannibalised every page by scatter bombing them with all those villages and way to deep and confusing descriptive content.
Regards
Nigel
-
Hey guys, I have actually previously used you guys for your services, sorry to hear your site is struggling at the minute.
Agreed with a few of Nigel's comments - lack of contextual content on your pages could be harming your chances of ranking for specific terms.
One of your other key problems is your mixed HTTP and HTTPS signals, this could be causing you a duplicate content issue. I would suggest as per Nigel getting a .htaccess update implemented asap to stop this.
I have also run a few page speed tests - these are coming back quite slow, this is also a negative factor for you. Enabling Gzip compression would reduce your page size quite a bit.
-
Hi Tim
There is a lot wrong but yes I agree speed is also an issue - see insights Baggy:
https://developers.google.com/speed/pagespeed/insights/?url=camping.uk-directory.com&tab=desktop
Regards
Nigel
-
Hi Tim,
Great to hear from you!
Would the following resolve the HTTP /HTTPS issues
Force SSL
<ifmodule mod_rewrite.c="">RewriteEngine on
RewriteCond %{HTTPS} !=on [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]</ifmodule>Regards
Baggy
-
Sorry Nigel, that was for you as well!
Regards
baggy
-
Haha!
Thanks Baggy - my bottom lip just went until I saw that lol

-
That should pretty much do the trick, as it will force all URLs to HTTPS..
I personally use a slight variation (see below).
Not having the SSL and HTTPS configured correctly will likely have caused you this significant problem. Using a tool like Moz Pro will hopefully highlight if you have duplicate content problems, as well as any others.
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTP_HOST} !^www.domain.com [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^(.) https://www.domain.com/$1 [L,R,NE] -
This post is deleted! -
I know you probably did - but did you replace the domain with yours?
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTP_HOST} !^camping.uk-directory.co.uk [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^(.) https://camping.uk-directory.co/.uk/$1 [L,R,NE]Also ask your hosts to update your server and httpconf files at a server level too to make sure it is configured correctly.