I have a url that looks like
mysite.com/transactions/view/123456
which works fine.
however my client now wishes to have a hashbang in the url
mysite.com/transactions/view/#123456
Now the obvious issue here is that browsers treat the hashbang as an anchor directive.
Is there anyway to in code igniter allow the hashbang and have #123456 (or even just 123456) passed to the view function?