I’ve seen your question the first time around 😊 To recap, and unless you tell EE otherwise, it will assume a template group, template and and url_title in segment_1, 2 and 3 respectively. (Leaving out special cases with dates, pagination, categories and the like.)
But of course nothing prevents your from having a URL like, say,
<a href="http://www.example.com/ministries/women/blog/article/article_title">http://www.example.com/ministries/women/blog/article/article_title</a>
In that case, you’d probably have a template group “ministries”, a template “women”, and then use:
{if segment_3 == "blog" && segment_4 == "article"}
{exp:weblog:entries weblog="{segment_3}" url_title="{segment_5}" dynamic="off" limit="1" }
{if:else}
...
{/if}
... or something along these lines. There are other ways, including physical directories on the server, or using url_rewriting etc. In all cases it takes some effort, and you have to be careful so as not to work against EE, if you will, but if you know what you are doing the sky’s the limit 😊
Hope that helps a bit. Also, if you haven’t done it yet, do yourself a favor and check out Lisa’s excellent series on the Importance of Semantics for a better understanding of how EE’s url structure works in general.