It doesn't affect SEO at all.I am building a NEXT JS app that fetches videos and uses dynamic routes based on id.
I end up with URLs that have numbers. For example:
https:xyz.com/videos/1
https:xyz.com/videos/2
Will this affect SEO?
It's fine, but personally I'd still go for a slug-based identifier based on the video title, just for appearance sakes if nothing else. Eg. https:xyz.com/videos/my-great-video or even https:xyz.com/videos/1/my-great-video (this one you can still use your numerical id)I am building a NEXT JS app that fetches videos and uses dynamic routes based on id.
I end up with URLs that have numbers. For example:
https:xyz.com/videos/1
https:xyz.com/videos/2
Will this affect SEO?