- Without www site domain was not forwarded to www
- When I hit on Home page, it opened with /index.html extension
Note : If you already have a .htaccess file uploaded to the server, just edit that and paste the below code after the code present so that both the issues will be resolved through a single .htaccess file. If there is no .htaccess file just make a fresh file.
Also See : Learn how to resolve 301 error in a website (redirect non www to www)
Redirect Single Page to another page in a Website
If you don’t know how to create a .htaccess file please see this video. (Take help from this video only to know the process to create .htaccess file)
.htaccess code to for redirection of domain/index.html to Homepage.
### re-direct index.html to root / ###RewriteCond %{THE_REQUEST} ^.*/index.html HTTP/
RewriteRule ^(.*)index.html$ /$1 [R=301,L]
Note : if the pages of website open with .php or .htm extension you just need to replace .html with .php or .html.



Leave a Reply