1
Is there any way to redirect the domain to a folder on public_html
instead of adding a file index.html
with automatic redirection?
1
Is there any way to redirect the domain to a folder on public_html
instead of adding a file index.html
with automatic redirection?
1
Yes. Use . htaccess.
Example:
RewriteEngine on
RewriteRule (.*) http://www.novosite.com.br/$1 [R=301,L]
Browser other questions tagged java html redirecting
You are not signed in. Login or sign up in order to post.