Please review my site and give valuable inputs and suggestions about SEO.

http://www.furnitureclick.co.uk/

Dani AI

Generated

Quick prioritized checklist (highest impact first) and pragmatic fixes tied to the replies here: consolidate the site host (canonical + 301 redirects), fix server TTFB/Core Web Vitals, optimize images and resource delivery, remove excessive inline CSS and defer/minify JS, and ensure crawlability (sitemap, Search Console/Bing) plus Product structured data. raised the TTFB issue; and flagged canonical/redirect problems; and identified styling and image bottlenecks. Run Lighthouse / PageSpeed Insights to get the exact LCP/CLS offenders. PageSpeed Insights docs. (developers.google.com)

Canonicalization and redirects: pick one canonical host (www or non-www) and enforce it with a 301 at the server edge; also ensure the site IP redirects to the canonical hostname and add rel=canonical on pages. Example Apache rule to force HTTPS+www (adjust example.com to your host):

RewriteEngine On
# force https and www
RewriteCond %{HTTPS} !=on [OR]
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^ https://www.example.com%{REQUEST_URI} [L,R=301]

Add a canonical link in each page head:

<link rel="canonical" href="https://www.example.com/path/to/page" />

Google documents canonical signals and redirect behavior. Canonicalization guidance and redirect guidance. (developers.google.com)

Performance/actionable build steps: reduce TTFB (better hosting or edge cache/CDN), enable Brotli/gzip for text assets, precompress static bundles, move the 409 inline styles into stylesheet files and remove unused CSS, and defer non-critical JS. For images: convert to AVIF/WebP, use responsive srcset, reserve layout space (width/height or aspect-ratio) to avoid CLS, and do NOT lazy-load the LCP hero image (instead preload it). Example picture pattern:

<picture>
  <source type="image/avif" srcset="hero.avif">
  <source type="image/webp" srcset="hero.webp">
  <img src="hero.jpg" width="1200" height="630" alt="Product hero">
</picture>

Guidance: image priority, formats and compression, and compression best practices. (maelstromwebservices.com)

Indexing and on-page: generate a proper XML sitemap and submit it to Google Search Console and Bing Webmaster Tools; use unique, descriptive title/meta descriptions (meta keywords are ignored by Google); add JSON-LD Product markup on product pages so shopping snippets can be eligible. Small JSON-LD example:

<script type="application/ld+json">
{"@context":"https://schema.org","@type":"Product","name":"Example Sofa",
 "image":["https://www.example.com/images/sofa.jpg"],
 "description":"Short product description",
 "offers":{"@type":"Offer","price":"499.00","priceCurrency":"GBP","availability":"https://schema.org/InStock"}}
</script>

See Google’s structured data product guide and sitemap docs; submit sitemaps to Bing as well. (developers.google.com)

Quick QA steps to finish: verify HTTP status/redirect chains with curl, confirm canonical tags and rel=canonical results in Search Console, run Lighthouse mobile and desktop, check Search Console Coverage + Core Web Vitals reports, and iterate. Prioritize the redirect/canonical + TTFB fixes first — they unblock indexing and user experience gains.

Recommended Answers

All 6 Replies

1.Found few images with missing ALT attribute.
2.W3C validation needed.
3.Estimated number of pages indexed by Bing less than 10
4.URL Canonicalization needed.(Domain name with WWW and without can be considered as different pages causing duplicate content for search engines).
5.IP Canonicalization needed- your site's IP does not redirect to website.
Backlinks are very few.
6.Less Engagement in Social Media.

Upon clicking the link to load the page, it took a few seconds for the server to return a response. That can't be good for user experience. I imagine most people won't wait, nor will Google.

Hi..
1). Poor Meta tittle
2). You have not used your Meta Keyword section in an efficient way
3). No Canonical Tag
4). Description is not optimized as per the keyword set
5). Sites fails the HTML 5 Vailidation test
6). http://furnitureclick.co.uk/ is not redirecting to http://www.furnitureclick.co.uk/

and many other things that you need to optimize in your site from SEO point of view

Poor title
Description have repeated word furniture-its not good
Showing duplicate issue. Seems you have submitted same content to various sites and then added to your home page.
Image Alt tag is missing for few images
There 409 inline CSS styles
Site loading speed is too slow
URL canonicalization error

Check your site on page tool :--- seositecheckup.com

Think your website is taking too much time to load more than 11 sec which is not good from Seo perspective. Use image compression tools punypng or JpegMini to reduce the load time
Some of the images don't have dimensions.Also, Minify javascript and don't use inline CSS.

In meta tags, use meta-geo tags which specifies your lattitudes, longitudes, distance, region and various factors related to your region

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.