Hello, I am trying to configure a site, I want to add a Alias. This way
it works well:

<VirtualHost *:80>
        ServerAdmin mymail
        ServerName site1.mydomain.com
        DocumentRoot /usr/share/site1
        <Directory />
                Options FollowSymLinks
                AllowOverride All
        </Directory>

        <Directory /usr/share/site1/>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride All
                Order allow,deny
                allow from all
        </Directory>

        ErrorLog ${APACHE_LOG_DIR}/error.log
        LogLevel warn
        CustomLog ${APACHE_LOG_DIR}/access.log combined

</VirtualHost>

But I want to get my web from http://site1.domain.com and
http://server/site1, so I add this line:

       Alias /site1 /usr/share/site1

But it doesn't work, how could I do that?

Thanks and best regards.


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
   "   from the digest: users-digest-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to