When reading the post, what do you mean by you will not be able to shortcut around the default template group?
The first example in the post is the “short cut” I’m referring to. On occassion people will design an EE site in a way that is supposed to ignore the first URL segment. They might have a setup something like this:
my_site (Default Template Group)
- index
- news
- calendar
You’re supposed to reference the URL in EE like so:
<a href="http://example.com/index.php/my_site/news/">http://example.com/index.php/my_site/news/</a>
But for whatever reason a person will skip the initial URL segment and specify that the URLs do this instead:
<a href="http://example.com/index.php/news/">http://example.com/index.php/news/</a>
But what EE is really rendering is my_site/news/. This works in the current version of EE but will not work if Strict URLs is enabled.