I know there are so many questions already been addressed, but I still couldn't find a good answer, particularly for angular. Someone please tell me how can I redirect example.com
to www.example.com
in .htaccess
.
Currently my .htaccess
looks like this
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(.*) /index.html [NC,L]
But its not redirecting