November 2017
Beginner to intermediate
288 pages
7h 33m
English
Let us now learn how to customize Firebase using URL redirect.
Sometimes, we just want to change some URLs for some reasons, and typically sometimes we want to perform URL redirecting in order to maximise our user experience and prevent broken routes. So let's see how we can achieve that:
"hosting": { //[*] Adding the redirect section "redirects": [ { "source" : "/books/firebasecookbook", "destination" : "/awesomebook", "type" : 301 }] }
Inside the redirects array, we're introducing the following:
Read now
Unlock full access