How do I rewrite urls like:
http://somedomain.com/page.html
to
http://somedomain.com/DIRECTORY/page.html
in firebase hosting. I tried this in firebase.json but didn't work.
"rewrites": [ {
"source": "/**.html",
"destination": "/DIRECTORY/**.html"
} ]
How does pattern matching work in firebase hosting config. Help would be appreciated.