I have a php script, which creates urls like this:
domain.com/model/sunny-leone-133.html
domain.com/model/stoya-2.html
domain.com/model/kagney-linn-karter-14.html
I want all of them to appear as something like this:
domain.com/model/sunny-leone
The number on the end are needed for database lookups, so I guess they would be there, but now visible to the visitors, if this can be done this way.
I would then want to crate an entry page, something like this:
domain.com/go
and this could be entered with something like this:
domain.com/go?m=sunny-leone
domain.com/go?m=stoya
domain.com/go?m=kagney-linn-karter
and this would be redirecting to the specific model pages. I can work on that part, I am just not sure how to do the first, rewriting part, and if this can work this way. All model names would be unique.
Thanks.