I have implemented html5mode true
and included <base href="/">
within the head tag. Everything appears to be functioning properly at first, but upon page refresh, an error is encountered.
The requested URL /updated_1/work was not found on this server.
I came across a similar issue in another post.
The root cause of this problem was attributed to using AngularJS 1.1.5 (which was unstable and exhibited different routing behaviors compared to version 1.0.7).
Reverting back to version 1.0.7 immediately resolved the issue.
Although I did experiment with version 1.2.0rc1, I halted further testing due to adjustments needed in router functionality after it was removed from the core.
In conclusion, the problem was rectified by switching to AngularJS v1.0.7.
Continuing with an older version resulted in additional errors, prompting me to consider upgrading to the latest version - AngularJS v1.3.15.
Could the angular version be causing this issue? Would appreciate any suggestions for the optimal solution.
Thank you