I've seen many questions here that address this but using an apache server, for my application, I'm using AWS S3 with Cloudfront, I need the application to work without the ugly hash on the URL.
Is there any approach that can be done to be able to refresh, or hit links directly without using the hash?
If any part of the code is required I can include it but I don't see the need for it since nothing is failing, I just need a working strategy.
Regards.
My app routing module
@NgModule({
imports: [
RouterModule.forRoot(routes, { useHash: true })
],
exports: [
RouterModule
]
})
Removing the hash true works for navigation but not for page refresh or direct links

