0

I deployed today on 2 different AWS environments (set up identically) the same version of our app.

On our second app, I have an issue when users click on a link. Link should redirect to my_app/module#/page and instead, it redirects to my_app/module#!/#%2Fpage

Locally and on the first app, it works fine. I look and could not find the reason why encoding is changed in this instance.

They are both rails app. nginx used on both servers if that can help

Thanks.

Dhaval Asodariya
  • 564
  • 5
  • 19
Ben Genest
  • 11
  • 2

1 Answers1

0

Issue was due to Angular version on one of my apps. After editing the package.json file and re deployed, everything is back to normal.

issue related: URL hash-bang (#!/) prefix instead of simple hash (#/) in Angular 1.6)

Ben Genest
  • 11
  • 2