vote up 0 vote down star

I have a VPS. I hosted a domain ipointing to a sub directory of the www folder. The domain works fine till the home page. The moment I start going to other pages its shows my servers [orginalname]/[subdirectory name] . I think I need to add a server alias to the domain's VHOST. Can anyone tell me how to do that??

flag

I have deleted the question from serverfault.com?? Please answer now – Arkid Jul 25 at 15:15

1 Answer

vote up 0 vote down

Are you using Apache? Try with

<VirtualHost *:80>
   DocumentRoot "/path/to/document/root"
   ServerName name1
   ServerAlias name2
 ...
link|flag
Where do i put this entry??? in which file i mean.. – Arkid Jul 25 at 15:25
i have added this to the /etc/apache2/sites-enabled # Ensure that Apache listens on port 80 Listen 80 # Listen for virtual host requests on all IP addresses NameVirtualHost *:80 <VirtualHost *:80> DocumentRoot /var/www/[]subfoldername/ ServerName ....... ServerAlias ........ # Other directives here </VirtualHost> ~ – Arkid Jul 25 at 15:29

Your Answer

Get an OpenID
or

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