I have successfully implemented the instructions in this guide about deploying multiple repos to a single, custom domain-enabled, site.
However, I am experiencing a bug that contradicts the docs on a trailing slash in redirect rules.
normal condition: When a url is entered into a browser that contains the trailing slash, the rewrite is successful and the sub directory is rendered as expected.
irregular condition: When a url is entered into a browser that does not contain the trailing slash, the rewrite happens, but THERE IS NO CSS APPLIED, so the sub directory is not rendered as expected.
Here is my _redirects file, the screenshots above are related to the 5th redirect rule, but the irregularity happens for rules 3 and 4 as well:
# zelip.me/talks
/talks https://zelip-talks.netlify.com/talks 200!
/talks/ https://zelip-talks.netlify.com/talks 200!
/talks/using-github https://zelip-talks.netlify.com/talks/using-github/ 200!
/talks/node-mvc https://zelip-talks.netlify.com/talks/node-mvc/ 200!
/talks/azellaz-jamstack https://zelip-talks.netlify.com/talks/azellaz-jamstack/ 200!
/talks/* https://zelip-talks.netlify.com/talks/:splat 200!