Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
YouTube Security VideosAndroid Police: THIS is Samsung's 5 year strategy? #shorts #tech #phone(24.09.2026 um 13:18 Uhr)
Windows Tipps & SecurityBatterietester für unter 10 Euro: So prüfen Sie leere Batterien schnell(24.09.2026 um 13:14 Uhr)
Windows Tipps & SecurityBentley bringt sein erstes Elektroauto auf den Markt(24.09.2026 um 13:49 Uhr)
Windows Tipps & SecurityAvocor integriert Korbyt-CMS in B-Series Displays(24.09.2026 um 13:05 Uhr)
Windows Tipps & SecuritydBTechnologies erweitert Opera-Familie um Nona-Serie(24.09.2026 um 13:15 Uhr)
Windows Tipps & SecurityJens Miedek wird Senior Vice President Sales bei Qvest(24.09.2026 um 13:20 Uhr)
Windows Tipps & SecurityBenQ bringt vier neue Boards mit KI-Beschleuniger(24.09.2026 um 13:33 Uhr)
YouTube Security VideosAndroid Police: THIS is Samsung's 5 year strategy? #shorts #tech #phone(24.09.2026 um 13:18 Uhr)
Windows Tipps & SecurityBatterietester für unter 10 Euro: So prüfen Sie leere Batterien schnell(24.09.2026 um 13:14 Uhr)
Windows Tipps & SecurityBentley bringt sein erstes Elektroauto auf den Markt(24.09.2026 um 13:49 Uhr)
Windows Tipps & SecurityAvocor integriert Korbyt-CMS in B-Series Displays(24.09.2026 um 13:05 Uhr)
Windows Tipps & SecuritydBTechnologies erweitert Opera-Familie um Nona-Serie(24.09.2026 um 13:15 Uhr)
Windows Tipps & SecurityJens Miedek wird Senior Vice President Sales bei Qvest(24.09.2026 um 13:20 Uhr)
Windows Tipps & SecurityBenQ bringt vier neue Boards mit KI-Beschleuniger(24.09.2026 um 13:33 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

I had two blog posts ranking against each other. Here's the Next.js fix

A few weeks ago I noticed two posts on my Next.js blog were dragging each other down in Google. Both targeted the same keyword. Both got ~80% of the way to page 1 and stalled. Neither ranked for anything else either. Classic keyword…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

A few weeks ago I noticed two posts on my Next.js blog were dragging each other down in Google. Both targeted the same keyword. Both got ~80% of the way to page 1 and stalled. Neither ranked for anything else either.



Classic keyword cannibalization. I'd written them three weeks apart, didn't remember the first when I wrote the second, and Google couldn't decide which one to surface, so it surfaced neither.



This post walks through how I diagnosed and fixed it, plus the date-handling gotcha that almost made things worse. Code at the bottom.






How to spot cannibalization



Open Google Search Console - Performance - Queries. Click any keyword you care about. Look at the "Pages" tab.



If two URLs show impressions for the same query, with neither clearly dominating, you have cannibalization. Google is split, it can't tell which one is canonical for that intent.



The symptom: both posts hover around position 8–15. Neither breaks through.

The diagnosis in my case took 30 seconds:




  • /blog/podcast-to-linkedin-posts (published March 7)

  • /blog/podcast-to-linkedin-posts-guide (published March 25)



Same primary keyword. I'd literally forgotten about the older post when I wrote the newer one.





The decision: merge, not delete



Three options when you have two competing posts:




  1. Delete the loser, bad idea, you lose every backlink pointing at it

  2. Add noindex to the loser, Google ignores it, but inbound link equity is wasted

  3. Merge into one canonical URL + permanent redirect, the only option that preserves everything



The keep/redirect decision: I picked the older URL as the survivor. Three reasons:




  • Older posts usually have more inbound links

  • Older URL has longer SERP history with Google

  • If the newer post has substantially better content, you merge the content INTO the older URL — not the other way around



So: the survivor's URL stays. The content gets the best of both posts. The loser URL gets a permanent redirect.





The architecture problem



Here's where it got interesting. My blog isn't markdown files on disk. It's inline JSX in src/app/blog/[slug]/page.tsx — one big posts: Record<string, BlogPost> map.

So "merging" wasn't a file operation. It was:




  1. Edit the survivor's entry in the map

  2. Remove the loser's entry

  3. Configure a redirect at the framework level, not at the post level



For Next.js, the cleanest way to handle that is next.config.ts:




// next.config.ts
const nextConfig = {
async redirects() {
return [
{
source: '/blog/podcast-to-linkedin-posts-guide',
destination: '/blog/podcast-to-linkedin-posts',
permanent: true,
},
]
},
}

export default nextConfig






One gotcha worth knowing: permanent: true emits a 308, not a 301. Both are "permanent redirect" from Google's perspective and link equity transfers identically, Google confirmed this back in 2016. But if you have monitoring rules that specifically check for 301, you'll need to adjust them. I verified the behavior in production: Google indexed the redirect correctly within 48 hours.






The date-handling gotcha



This is where I almost made things worse. When you update a post substantially, you want to signal freshness to Google. The naive fix:




// DON'T do this
{
slug: 'podcast-to-linkedin-posts',
date: '2026-04-25', // overwriting the original publishedAt
// ...
}






Bad move. You just:




  • Broke your RSS feed (subscribers see a "new" post that's not actually new)

  • Lost the publishedAt signal that Google's freshness algorithm relies on for trust history

  • Confused anything that depends on chronological ordering (sitemap-sort, related-posts logic, archive pages)



The right fix is to add an updatedAt field separately:




// post interface
interface BlogPost {
slug: string
title: string
date: string // never change after publish
updatedAt?: string // bump on substantial edits
// ...
}






And in the JSON-LD render:




// app/blog/[slug]/page.tsx
const jsonLd = {
'@context': 'https://schema.org',
'@type': 'Article',
datePublished: post.date,
dateModified: post.updatedAt ?? post.date, // <-- the key line
// ...
}






In the masthead, render the "Updated" line conditionally:




<time>{formatDate(post.date)}</time>
{post.updatedAt && (
<>
{' · '}
<time>Updated {formatDate(post.updatedAt)}</time>
</>
)}






Now Google sees both signals cleanly: when the post was first published (rank-trust history) and when it was last meaningfully updated (freshness boost).






The cleanup grep



Before celebrating, find every internal link pointing at the old URL and update it:




# find every reference to the loser slug
rg "podcast-to-linkedin-posts-guide"






Don't trust your memory. I had 4 internal links scattered across other blog posts that pointed at the loser. Without updating them, every reader gets an extra redirect hop, and a little link equity leaks each time.



Also check:




  • Footer / nav components

  • Any sitemap generator (mine iterates the posts array, so it self-cleaned — but check yours)

  • Schema markup generators

  • Any hardcoded references using the full https:// URL form

  • Middleware (in case you have other redirect logic that could conflict)






The verification



After deploying:



next build, make sure nothing breaks

Hit the loser URL in browser, watch DevTools Network tab, should be 308 to survivor

Hit the survivor URL, should render with both datePublished and dateModified in JSON-LD (verify with Google Rich Results Test)

Request indexing in GSC for the survivor URL, speeds up Google's re-evaluation from weeks to days






What to expect



Realistically: 2–4 weeks before you see ranking movement. Google needs to:




  • Crawl the redirect

  • Consolidate signals onto the survivor

  • Re-evaluate ranking based on the unified, deeper content



In my case I closed three cannibalization pairs in one session on my blog at castnova.app. I'll know in three weeks whether the consolidation lifts the affected URLs into page 1.






The bigger lesson



Cannibalization compounds. Two posts - both stall. Five posts on overlapping intents - your whole topical cluster underperforms, because Google can't form a clean ranking signal for any single one.



The fix is mechanical (merge + redirect + grep), but the prevention is editorial: before publishing a new post, search your own blog for related keywords. If something already exists, extend it instead of writing a parallel post.



If you're running a Next.js blog with inline posts (not MDX files), the merge operation is even simpler than the markdown file case, one map edit, one config entry, done. The hard part isn't the code, it's catching yourself before you write the duplicate post in the first place.

CTI Threat Relationship Graph2 Knoten / 1 Relationen
CVE / Incident Software MITRE ATT&CK CWE Weakness IoC
SOC Incident Playbook: Remote Code Execution (RCE) Defense
title: Detect Exploitation - I had two blog posts ranking against each other. Here's the Next.js fix
id: 4e6598d8-ad4b-4584-bfda-e139a27482dc
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-24
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-24"
        description = "YARA Signature for "
    strings:
        $str = "I had two blog posts ranking a" ascii wide
    condition:
        any of them
}
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich I had two blog posts ranking against eac.... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten I had two blog posts ranking against each other. Here's the Next.js fix

Thematisch verwandte Begriffe: blog, posts, ranking, against · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-97152 | Nanomsg versions 0.5-beta through 1.x before 1.2.3 has a remotely exploi…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick