how does someone make their website search results appear like this

Dani AI

Generated

A short, practical expansion on the thread: the multi-line entries you see in results are generated by the search engine, not manually added by the webmaster. Building on points from and , the most effective approach is to give the engine clear, machine-readable signals about site structure and which pages are important. That both improves chances of expanded listings and makes those listings more useful to searchers.

Concrete signals to add on-site:

  • Unique, descriptive title tags and meta descriptions for each page.
  • Consistent internal linking with meaningful anchor text and a single canonical URL per page.
  • Structured data for a site-level search box and for breadcrumbs. Example JSON-LD (adapt and use your own URLs):
{
  "@context": "https://schema.org",
  "@type": "WebSite",
  "url": "https://www.example.com/",
  "potentialAction": {
    "@type": "SearchAction",
    "target": "https://www.example.com/search?q={search_term_string}",
    "query-input": "required name=search_term_string"
  }
}
{
  "@context": "https://schema.org",
  "@type": "BreadcrumbList",
  "itemListElement": [
    {"@type":"ListItem","position":1,"name":"Home","item":"https://www.example.com/"},
    {"@type":"ListItem","position":2,"name":"Products","item":"https://www.example.com/products"}
  ]
}

Quick troubleshooting and next steps: inspect how Google indexes the site with site:yourdomain.com, watch Search Console reports for indexed pages and errors, submit an XML sitemap, and fix crawl/redirect problems. For official guidance on structured data and Search Console, see Google Search Central documentation: and Search Console.

Recommended Answers

All 2 Replies

You'll need a way for Google to discover a decent menu structure. There's no guaranteed way to get this done.

The website doesnt, the SE does
these results are considered relevant enough to be multi-linked
Goto google webmaster tools
register yourself & your site,
read Google_webmaster_101
&

Follow The Instructions

google inform you what they expect, to rank well
content is King

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.