I have two domain name
- www.domain.com
- www.parked.com
I have 3 folders inside the public_html (www) folder
- folder1
- folder2
- folder3
i want a wildcard using htaccess code to redirect the domain name to folder2
so it be like this:
www.domain.com/ => public_html/folder2/
www.domain.com/forum => public_html/folder2/forum
www.domain.com/support => public_html/folder2/support
or even subdomains:
www.forum.domain.com => public_html/folder2/forum
www.support.domain.com => public_html/folder2/support
www.[*random*].domain.com => public_html/folder2/
with www. and without it
and the same for www.parked.com to folder3
and any attempt to access folder1 through e.g. www.domain.com/folder1 it then search for folder1 only inside folder2 not inside public_html .
i will deeply appreciate the help
regards
Some of your wishes
.htaccess
EDIT:
So, if the input is the url
www.domain.com/index.html you will be redirect to
www.domain.com/folder2/index.html
The Condition
means:
If there is "domain.com" in %{HTTP_HOST} do the rule
means:
You see this page it is a good explanation