How to display contents from www directory for http://www.website.com

i..e when a user visits http://www.website.com i want to display the contents from /www directory but keep the url same.

I have tried few methods, but for all of them the url changes as well....

Though i want to load the content from http://www.website.com/www/ i want to keep the url as http://www.website.com/

And same for other pages., i..e http://www.website.com/products.php : /www/products.php

link|improve this question

1  
Why don't you modify your document root? – fabrik Mar 30 '11 at 9:22
Or use htaccess. – Christian Mar 30 '11 at 9:23
I tried doing this via htaccess, but it didn't work, Can you suggest any htaccess tutorial for this? – Roccos Mar 30 '11 at 9:37
When you say it didn't work, what exactly did you try? – Cogicero Mar 30 '11 at 10:09
feedback

2 Answers

up vote 1 down vote accepted

If you are running apache, you can change the root folder in the httpd.conf file (UserDir)

http://httpd.apache.org/docs/2.0/mod/mod_userdir.html#userdir

So you would have to do something like:

UserDir /www/

link|improve this answer
Is there any way to do this via htaccess? – Roccos Mar 30 '11 at 9:38
I didn't know myself, but after some googling I arrived on this link you could try: bluehostforum.com/… – arnehehe Mar 30 '11 at 9:52
Thanks for the link, it worked perfectly. – Roccos Mar 30 '11 at 10:22
Hey, is there any way you can help me out with another problem, The given code works perfectly., what i want to do now is, redirect all other sub-domain request to /application directory but i don't want to display the folder name in the url, just like this one, What will be code for this? (both of this integrated together) – Roccos Mar 30 '11 at 10:38
feedback

You can use an htaccess file

RewriteEngine on

# Only apply to website.com URLs outside the www folder, but ignore real files and folders
RewriteCond %{HTTP_HOST} ^(www.)?website.com$
RewriteCond %{REQUEST_URI} !^/www/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /www/$1

# Finally redirect the topmost folder itself
RewriteCond %{HTTP_HOST} ^(www.)?website.com$
RewriteRule ^(/)?$ www/index.php [L]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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