DEV Community

daniel
daniel

Posted on

Nobody talks about the tiny SEO checks before publishing a page

There is a strange moment right before publishing a page.

The design looks fine.
The content is ready.
The button works.
The client is happy.
The developer is done.

So you click publish.

And then, two days later, someone asks why the page is not showing up on Google.

That is when the tiny SEO checks suddenly become very important.

What it actually looks like

Most SEO problems are not dramatic.

It is not always a huge technical disaster.
It is not always a broken website.
It is not always some mysterious Google penalty.

Sometimes it is just a page with a noindex tag still sitting there.

Sometimes the title is still “Untitled page”.

Sometimes the H1 says one thing, the title says another, and the URL looks like it was generated during a panic.

Sometimes the image is 3 MB for no reason.

Sometimes the page exists, but nothing links to it.

And the funny part is that everything looks normal from the outside.

The page loads.
The layout works.
The client can see it.
The browser does not complain.

But search engines are not humans looking at the page for five seconds. They need signals. Clear ones.

The boring checks matter

Before publishing, I like to check a few simple things.

Is the page indexable?

<meta name="robots" content="index, follow">
Enter fullscreen mode Exit fullscreen mode

Is there no accidental noindex?

Is the title clear?

Is there one main H1?

Is the URL readable?

Is the page linked from somewhere else on the site?

Is the content actually useful, or is it just there because someone said “we need an SEO page”?

None of this feels exciting.

But this is the part that saves you from opening Search Console later and wondering why Google discovered the page but decided to ignore it.

The mistake is thinking SEO comes later

A lot of people treat SEO like something you add after the page is finished.

But by then, some of the important decisions have already been made.

The structure.
The headings.
The internal links.
The performance.
The indexation settings.
The canonical URL.

SEO is much easier when it is part of the publishing process, not a cleanup task three weeks later.

Give the page a real chance

A page does not need to be perfect before going live.

But it should at least have a fair chance to be understood, crawled, and indexed.

That usually means doing the small boring checks before clicking publish.

Not because they are impressive.

Because they prevent the very annoying situation where a page technically exists, but search engines are quietly ignoring it.

And honestly, that is one of the most frustrating bugs to debug.

Top comments (0)