Hi Kirti,
The redirection of the vector-table is tied to the flash protection mechanism. The concept is to move the vector table to locations immediately below write-protected flash.
In order to place the vector-table at 0xFBC0, you would need to write-protect 0xFFC0 through 0xFFFF, which means you will not be able to use 0xFFC0 through 0xFDFF for writing. All flash above the vector-table is protected.
Maybe you should allocate your write-able flash first, followed by your code, followed by the vector-table, and finally followed by protected-flash containing the bootstrap.