Seoxpert.io
highBest Practices

No Contact Page Detected

No Contact Us page was found on your website, which can harm trust and E-E-A-T signals.

By Seoxpert Editorial · Published

Why it matters

A contact page is a key trust factor for both users and search engines. Google Quality Raters check for visible contact information to assess site credibility. Missing a contact page can negatively impact your site's E-E-A-T and user trust.

Impact

Sites without a contact page may rank lower and appear less trustworthy to users and search engines.

How it's detected

The crawler checks for URLs or page titles containing 'contact' and scans for contact-related schema or content.

Common causes

  • No dedicated contact page created
  • Contact information only present in footer or scattered across pages
  • Contact page is blocked by robots.txt or noindexed
  • Contact page uses non-standard naming or URL structure
  • Contact info is only in images or scripts, not crawlable text

How to fix it

Create a /contact page with a visible contact form, email address, and, if relevant, phone number and physical address. For businesses, include business hours and a map embed. Update your Organization schema to include a ContactPoint entry. Ensure the page is crawlable and linked from your main navigation.

Code examples

Basic Contact Page Example

<h1>Contact Us</h1>
<form action="/send-message" method="post">
  <label for="name">Name:</label>
  <input type="text" id="name" name="name">
  <label for="email">Email:</label>
  <input type="email" id="email" name="email">
  <label for="message">Message:</label>
  <textarea id="message" name="message"></textarea>
  <button type="submit">Send</button>
</form>
<p>Email: contact@example.com</p>
<p>Phone: (123) 456-7890</p>
<p>Address: 123 Main St, City, Country</p>

Organization Schema with ContactPoint

{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Example Company",
  "url": "https://www.example.com",
  "contactPoint": [{
    "@type": "ContactPoint",
    "telephone": "+1-123-456-7890",
    "contactType": "customer service",
    "email": "contact@example.com"
  }]
}

FAQ

Does having contact info only in the footer count as a contact page?

No, a dedicated, easily discoverable contact page is recommended for trust and E-E-A-T.

Can I name my contact page something other than /contact?

Unusual names may not be detected by crawlers; use standard naming like /contact or /contact-us.

Is a contact form required or is an email address enough?

A contact form is recommended, but at minimum provide a visible email address and other relevant contact info.

Should I add contact info to my Organization schema?

Yes, adding ContactPoint to your Organization schema helps search engines understand your contact details.

Found this issue on your site?

Run a scan to see if No Contact Page Detected affects your pages.

Scan my website →