Directories and backlinks
How to track directory submissions and verify the links went live
Submitting is the easy half. Here is a lightweight system for tracking status, catching rejections, and confirming your backlinks still exist.
· 7 min read
Founders track submissions carefully for about a week. Then the spreadsheet goes stale, a dozen listings sit in moderation queues nobody follows up on, and six months later there's no way to answer a simple question: which of these actually worked?
The tracking system doesn't need to be sophisticated. It needs to be small enough that you'll keep it up to date, and it needs to cover the two things that go wrong after submission.
The two failure modes
Listings that stall. A meaningful share of directory submissions sit in a queue indefinitely. Most directories are run by one or two people, and things fall through. A polite follow-up email after two or three weeks resolves a surprising number of these, but only if you know which ones are stuck.
Listings that quietly break. A listing that went live a year ago might now be gone, redirected, or switched from a followed link to nofollow during a site redesign. Nobody emails you when this happens. If you don't check, you'll keep counting a backlink that no longer exists.
The minimum record
Six fields. Anything beyond this is optional and most of it won't get maintained.
| Field | Why | | --- | --- | | Directory | Which site | | Date submitted | Tells you when to follow up | | Account or email used | You will not remember | | Status | To do, pending, live, or rejected | | Live URL | The actual listing page, once it exists | | Link type | Followed or nofollow, checked at the listing |
A spreadsheet is fine. The tool matters far less than whether you update it.
The status flow
Keep the statuses few and unambiguous:
- To do. On your list, not submitted.
- Pending. Submitted, awaiting review.
- Live. Approved, listing URL recorded.
- Rejected. Declined, with a note on why if they told you.
- Dead. Was live, no longer is.
That last one is the status most people don't have, and it's the one that keeps your picture honest over time.
The follow-up rhythm
At two to three weeks, review everything still pending. For anything on a directory you actually care about, send a short email. Something like: you submitted on a date, here's the product name and URL, is there anything else needed. That's it. No pitch.
At six weeks, move anything still pending on a low-priority directory to rejected and stop thinking about it.
Every quarter, verify the live ones.
Verifying a live listing
Three things to check, and all three matter:
The page still exists. A 404 or a redirect to a category page means the listing is gone.
Your URL is still in the HTML. Some directories keep the listing page but remove the outbound link, or replace it with a redirect through their own domain. Fetch the page and search the source for your domain.
The rel attribute hasn't changed. Site redesigns change link handling
more often than you'd think, and a followed link becoming nofollow is a silent
change.
If you're comfortable with a terminal, a check on one listing is quick:
curl -s https://directory.com/listing/yourproduct | grep -o 'href="[^"]*yourproduct[^"]*"[^>]*'
That shows you whether the link is there and what attributes are on it. For a handful of listings, doing this by hand once a quarter is entirely reasonable. For fifty, you'll want something that runs on a schedule.
What to do with the data
After a couple of cycles you'll have something genuinely useful, which is a record of which directories actually approve, how long they take, and whether their listings stay live and get indexed.
That record is worth more than any published directory list, because it's about your product in your category. A directory that rejects everything in your space is worth dropping. One that approves in three days and indexes reliably is worth prioritizing next time.
It also tells you something published DR figures can't: whether the listing still exists. A list can tell you a directory's authority. Only your own checking tells you whether your link is still on it.
If you'd rather not run this process at all, we handle it, including the verification pass that confirms each backlink went live and stayed live. Otherwise the directory list is a reasonable place to build your own from.
Frequently asked questions
- How long should I wait before following up on a submission?
- Two to three weeks for a free listing is reasonable. Many directories are run by one person and a polite follow up email is often what moves a listing out of the queue.
- How do I verify a backlink is still live?
- Fetch the listing page and confirm your URL still appears in the HTML, and check the rel attribute at the same time. Links get removed, redirected, or quietly switched to nofollow more often than founders expect.
- What should I record for each submission?
- The directory, the date you submitted, the account or email you used, the current status, the live listing URL, and the link type. Everything else is optional.