I can create a view with path "/content/%/relatedarticles", and then create a contextual filter that limits nid to what's passed in "%" in the path. This means that if I go to drupalsite.com/content/1/relatedarticles, I can display all articles related to node 1. I've got this working just fine.
I don't like numbers in URLs, so I'm using aliases. If I have content at drupalsite.com/content/first-node, I want to be able to go to drupalsite.com/content/first-node/relatedarticles and get the same thing as above.
But I can't seem to make this work. The contextual filter validator seems to convert taxonomy terms to ids and user names to ids, but not content names.
Is there some way of making this work?
You must set validation on to use the taxonomy term in the Contextual filer. Set the filter type to term name converted to tid and check the box Transform Dashes...
The dashes must be addressed to read multi-word URL path segments correctly.