- Published on
AngularJS HTML5 Mode on Apache using htaccess
In the root directory of the website we need to create htaccess file. And the configuration for it is given below
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(.*) /index.html [NC,L]