Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
I don't understand the question. Can you clarify what should happen step by step? – Pekka 웃 Nov 21 '11 at 10:30

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.

2 Answers

In your .htaccess file in the DocumentRoot put:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /test/$1 [QSA]
</IfModule>

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.

share|improve this answer

Do you have access to the Apache configuration? You can just modify the DocumentRoot property of the vhost for www.mydomain.com. You mentioned a host though, so I'm guessing not. Here's the next best thing: you can add a mod_rewrite rule to .htaccess in the root of www.mydomain.com, assuming your host allows this:

RewriteEngine on
RewriteRule ^(.*)$ /test/$1
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.