Reputation: 73
I wonder how to set a redirection in .htaccess so that after entering my website jewelsandbeauty.co.uk the user will be directed directly to HOME (first item in the menu). Every redirect attempt ends with error 404. What is going wrong?
Upvotes: 0
Views: 76
Reputation: 41249
You can use the following in your htaccess
RewriteEngine on
RewriteRule ^/?$ /home/ [L,R=301]
This will redirect https://example.com/
to https://example.com/home/
.
Upvotes: 1