I wanted to allow any routes which start with # and any number
Example :
http://127.0.0.1/mypage/#435fsdfd
This should basically execute renderMyPage.
Tried below things but didn't work
routes : {
"" : "renderMyPage",
"#:/" : "renderMyPage"
}