SEO optimization for faceted catalog navigation pages

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Optimizing SEO for Filterable Catalog Pages (Faceted Navigation SEO)

Faceted navigation — filtering by attributes: color, size, brand, price, rating. Each filter combination generates unique URL. On catalog with 1000 products and 10 attributes — millions of potential URLs. Google crawls all, wastes crawl budget, no page gets enough signals, site slows in indexation.

Diagnosing Problem Scale

First understand how many unique URLs current facets generate:

# Crawl via Screaming Frog with parameter tracking
# Configuration → Spider → Crawl Behaviour → Enable JavaScript

# Or sitemap analysis
curl -s https://example.com/sitemap.xml | grep '<loc>' | wc -l

# GSC: Coverage report — Excluded → Crawled - currently not indexed
# Thousands of URLs with parameters confirm problem

Classifying Filter URLs by Value

Not all filters equally useless:

Valuable (needs indexing):

  • /catalog/laptops/?brand=apple — "apple notebooks" search
  • /catalog/dresses/?color=black&length=midi — "black midi dress"

Technical garbage (block from indexing):

  • /catalog/?sort=price_asc — sorts
  • /catalog/?page=2&color=red — pagination + filter combos
  • /catalog/?min_price=0&max_price=99999 — unused price ranges
  • /catalog/?color=red&color=blue — multi-select same attribute

Technical Solutions

Method 1: robots.txt — block parameters

Coarse tool, use for no-SEO-value parameters:

User-agent: *
Disallow: /catalog/*?*sort=
Disallow: /catalog/*?*page=
Disallow: /catalog/*?*min_price=

Problem: Google may not honor wildcard Disallow reliably.

Method 2: noindex + follow for unwanted combos

More reliable — server logic adds noindex by parameter:

// Laravel Middleware
class FacetedSeoMiddleware
{
    private const NOINDEX_PARAMS = ['sort', 'page', 'min_price', 'max_price'];
    private const ALLOWED_SINGLE_FACETS = ['brand', 'color', 'size'];

    public function handle(Request $request, Closure $next): Response
    {
        $response = $next($request);

        $queryParams = $request->query();
        $paramKeys = array_keys($queryParams);

        $shouldNoindex = in_array(true, array_map(
            fn($k) => in_array($k, $this->NOINDEX_PARAMS),
            $paramKeys
        )) || count(array_intersect($paramKeys, $this->ALLOWED_SINGLE_FACETS)) > 2;

        if ($shouldNoindex) {
            $response->headers->set('X-Robots-Tag', 'noindex, follow');
        }

        return $response;
    }
}

Method 3: Canonical for duplicate combos

If /catalog/?color=red&brand=nike and /catalog/?brand=nike&color=red are identical:

function buildCanonicalUrl(Request $request): string
{
    $params = $request->query();
    ksort($params);  // Sort alphabetically

    $allowedFacets = ['brand', 'color', 'size'];
    $filteredParams = array_filter(
        $params,
        fn($key) => in_array($key, $allowedFacets),
        ARRAY_FILTER_USE_KEY
    );

    $baseUrl = $request->url();
    return $filteredParams
        ? $baseUrl . '?' . http_build_query($filteredParams)
        : $baseUrl;
}

Method 4: Separate SEO pages for valuable combos

Most powerful: create clean slug pages for high-demand combos:

/catalog/laptops/apple/       → "apple notebooks"
/catalog/dresses/black/midi/  → "black midi dress"

Breadcrumbs and Internal Linking

Faceted pages need internal links or Google won't index them:

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "BreadcrumbList",
  "itemListElement": [
    {"@type": "ListItem", "position": 1, "name": "Catalog", "item": "https://example.com/catalog/"},
    {"@type": "ListItem", "position": 2, "name": "Laptops", "item": "https://example.com/catalog/laptops/"},
    {"@type": "ListItem", "position": 3, "name": "Apple", "item": "https://example.com/catalog/laptops/apple/"}
  ]
}
</script>

Monitoring After Implementation

def get_indexed_faceted_urls(site_url: str, credentials) -> list:
    service = build('searchconsole', 'v1', credentials=credentials)

    response = service.searchanalytics().query(
        siteUrl=site_url,
        body={
            'startDate': '2024-01-01',
            'endDate': '2024-03-31',
            'dimensions': ['page'],
            'dimensionFilterGroups': [{
                'filters': [{
                    'dimension': 'page',
                    'operator': 'contains',
                    'expression': '?'
                }]
            }]
        }
    ).execute()

    return [row['keys'][0] for row in response.get('rows', [])]

Success metric: reduce crawled parameterized URLs within 4–8 weeks. Track in GSC Coverage.

Timeline

Audit faceted structure, classify parameters, develop strategy — 3–5 days. Technical implementation (middleware noindex, canonical normalization, SEO pages) — 5–10 days. Monitoring effect — 4–6 weeks post-implementation.