Reputation: 39
My index page is http://www.cyrusengineer.com/
I want to redirect this to http://www.cyrusengineer.com/home
Is there any method in .htaccess
Upvotes: 0
Views: 78
Reputation: 471
Redirect index.html to a specific path from .htaccess:
This allows you to redirect index.html to a specific subfolder
Redirect /index.html http://www.cyrusengineer.com/home
Upvotes: 2