Use the following rule in nginx
location = / {
return 301 https://www.example.com/folder;
}
Use the following with apache
RewriteRule ^$ /folder [L]
Use the following rule in nginx
location = / {
return 301 https://www.example.com/folder;
}
Use the following with apache
RewriteRule ^$ /folder [L]