I have a small question : for example, i have a domain: www.mydomain.com, on host in httpdocs my website is in folder test. so how can i redirect to access my website by domain:
www.mydomain.com instead of www.mydomain.com/test
|
closed as off topic by Filburt, VMAtm, Shawn Chin, Tim Post♦ Nov 21 '11 at 11:15
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
In your .htaccess file in the DocumentRoot put:
This will make all the URLs such as www.foo.com/hello.html be internally rewritten to www.foo.com/test/hello.html and voila you will achieve desired effect. |
|||
|
|
|
Do you have access to the Apache configuration? You can just modify the DocumentRoot property of the vhost for
|
|||
|
|