<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: yohendri valles</title>
    <description>The latest articles on DEV Community by yohendri valles (@yohendri_valles).</description>
    <link>https://dev.to/yohendri_valles</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3918906%2F7460b10d-8658-45fa-94ec-c73e412d8579.png</url>
      <title>DEV Community: yohendri valles</title>
      <link>https://dev.to/yohendri_valles</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yohendri_valles"/>
    <language>en</language>
    <item>
      <title>Most developers are doing URL slugs wrong (and it hurts SEO)</title>
      <dc:creator>yohendri valles</dc:creator>
      <pubDate>Fri, 08 May 2026 00:25:10 +0000</pubDate>
      <link>https://dev.to/yohendri_valles/most-developers-are-doing-url-slugs-wrong-and-it-hurts-seo-3ej9</link>
      <guid>https://dev.to/yohendri_valles/most-developers-are-doing-url-slugs-wrong-and-it-hurts-seo-3ej9</guid>
      <description>&lt;p&gt;When I started building websites, I didn’t think much about URL slugs.&lt;/p&gt;

&lt;p&gt;Something like:&lt;br&gt;
/page?id=123&lt;/p&gt;

&lt;p&gt;or even:&lt;br&gt;
/this-is-a-very-long-url-slug-with-too-many-keywords&lt;/p&gt;

&lt;p&gt;seemed fine.&lt;/p&gt;

&lt;p&gt;Turns out… it’s not.&lt;/p&gt;

&lt;p&gt;After testing multiple pages and tools, I realized that bad slugs quietly hurt both SEO and user experience.&lt;/p&gt;

&lt;p&gt;Here’s what actually works 👇&lt;/p&gt;

&lt;h2&gt;
  
  
  🚫 Common mistakes
&lt;/h2&gt;

&lt;p&gt;Most developers:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Use dynamic URLs with IDs&lt;/li&gt;
&lt;li&gt;Stuff keywords into slugs&lt;/li&gt;
&lt;li&gt;Make them too long&lt;/li&gt;
&lt;li&gt;Ignore readability&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Example:&lt;/p&gt;

&lt;p&gt;❌ /best-seo-url-guide-for-beginners-2026&lt;br&gt;&lt;br&gt;
❌ /page?id=928374&lt;br&gt;&lt;br&gt;
❌ /how-to-create-the-best-url-slug-for-seo-ranking-fast&lt;/p&gt;

&lt;h2&gt;
  
  
  ✅ What works better
&lt;/h2&gt;

&lt;p&gt;From what I’ve tested, high-performing slugs usually follow these rules:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;3–5 words max
&lt;/li&gt;
&lt;li&gt;Lowercase only
&lt;/li&gt;
&lt;li&gt;Use hyphens (-), not underscores
&lt;/li&gt;
&lt;li&gt;Include ONE main keyword
&lt;/li&gt;
&lt;li&gt;Remove filler words (like "the", "and", "for")&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Example:&lt;/p&gt;

&lt;p&gt;✅ /seo-url-guide&lt;br&gt;&lt;br&gt;
✅ /slug-generator&lt;br&gt;&lt;br&gt;
✅ /password-generator  &lt;/p&gt;

&lt;h2&gt;
  
  
  ⚡ Why this matters
&lt;/h2&gt;

&lt;p&gt;Short, clean URLs:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Are easier to read&lt;/li&gt;
&lt;li&gt;Get better click-through rates&lt;/li&gt;
&lt;li&gt;Are easier to share&lt;/li&gt;
&lt;li&gt;Help search engines understand your page&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🛠️ What I built
&lt;/h2&gt;

&lt;p&gt;While working on multiple projects, I got tired of manually creating slugs.&lt;/p&gt;

&lt;p&gt;So I built a simple tool to generate clean, SEO-friendly slugs instantly.&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://codetooly.com/tools/slug-generator.html" rel="noopener noreferrer"&gt;https://codetooly.com/tools/slug-generator.html&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  💡 Final takeaway
&lt;/h2&gt;

&lt;p&gt;If you’re ignoring your URL structure, you’re leaving easy SEO wins on the table.&lt;/p&gt;

&lt;p&gt;Keep it simple.&lt;br&gt;
Keep it short.&lt;br&gt;
Make it readable.&lt;/p&gt;

&lt;p&gt;Curious — how do you generate your slugs?&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcgaskqzxcf6pk6r55w24.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcgaskqzxcf6pk6r55w24.png" alt=" " width="800" height="800"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>seo</category>
      <category>webdev</category>
      <category>beginners</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
