Change models url with slug for better SEO #29
Replies: 4 comments
-
As a quick hack for this, we could probably just make it so that the path is That said, implementing a simple slug system probably won't be that difficult. It's building a feature complete slug system that can get time consuming and hard to work with (speaking from experience). |
Beta Was this translation helpful? Give feedback.
-
@JustMaier I will be implementing this as you suggested keeping the id in the url as well. Let's keep it simple then work our way as we see fit |
Beta Was this translation helpful? Give feedback.
-
@manuelurenah thanks for implementing this! Happy to have this live. |
Beta Was this translation helpful? Give feedback.
-
Google has stated (like a while back now) that they really don't care what's in a URL. Remember when they tried to kill it off all together, and hide the URL bar from showing anything more than just the top level domain in Chrome? It didn't take, but they've been trying to diminish people looking at URLs ever since. A lot of SEO places still harp on this 10+ year-old "put keywords in the URL" but it's not true. Look at their advice around localized URLs, and how they've said, "Keywords in the URL don't matter." Look at Moz's findings, that keywords in URLs can be good for users clicking them if they read the whole URL in a link somewhere... but past that, "Meh." Look at sites like IMDB, certainly very popular, which doesn't use any keywords in the URL. https://www.imdb.com/title/tt0076729/ Anyway just wanted to point this out. All the SEO stuff is still 99% BS. (= |
Beta Was this translation helpful? Give feedback.
-
Right now the model url structure is as follow
/models/{id}
which is not great for SEO since it will generate the following/models/1234
. To improve this, it'd be best to slugify the model title and set that as the url/models/{slug}
(e.g.:/model/arcane-diffusion
).Also, we should strip any html tags from the meta description
Beta Was this translation helpful? Give feedback.
All reactions