Is there any way to redirect the domain to a folder in public_html
instead of adding a index.html
file with automatic redirection?
Is there any way to redirect the domain to a folder in public_html
instead of adding a index.html
file with automatic redirection?
Yes. Use .htaccess.
Example:
RewriteEngine on
RewriteRule (.*) http://www.novosite.com.br/$1 [R=301,L]