Now, my website\'s url looks like this because I\'m using the approach described here
http://localhost:4200/#/cadastro
Is it possible to remove the hash in t
Create a .htaccess file Paste the following Code And Upload on your prod Server.
RewriteEngine On RewriteBase / RewriteRule ^index\.html$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.html [L]