I know that stackoverflow.com uses the module pathauto. I would like to use pathauto in drupal to create pathauto uris. But I don't know how to do this.
Example: domain.com/node/1 after using pathauto then domain.com/article/1/title-node
Now I want to go to domain.com/article/1/??? then still it shows node 1 instead of show page not found.
I am going on the assumption that what you want to do is have an url structure like
http://example.com/article/ID/title
where thetitle
part is pretty much ignored and it will go tohttp://example.com/article/ID
no matter what is entered fortitle
. What you could do is set up a view that has the pathhttp://example.com/article
which acceptsID
as an argument which is used to specify an individual article - most likely by the nid. It should then ignore anything that comes after it.