I'm implementing a slug system for my website at the moment. I plan to redirect invalid slugs to the correct on that is stored in the database. E.g.
http://example.com/11/wrong-slug
301 yönlendirme yapmak değilse 11 'slug yanlış-sülük ise db Hit kontrol
http://example.com/11/right-slug
301 algılamak ve geçersiz bir bağlantıyı takip ettiğini kullanıcıyı bilgilendirmek
O yüzden orada imi vb güncellemek için kullanıcı isteyin tercihen PHP kullanarak 301 yönlendirme tanımlamak mümkündür
Thanks, Jamie.