如何设置别名 apache2

mag*_*lla 4 alias apache2 12.04

我是 UBUNTU 的新手,并尝试使用 apache 来检查我目前正在使用 Joomla 开发的网站(也是新手)。我试图在 httpd.conf 中设置别名,但没有成功。感谢您的帮助。

Rin*_*ind 7

我希望在您创建的虚拟主机中包含一个别名/etc/apache2/sites-enable/

例子:

VirtualHost *> 
    ServerName example.com
    DocumentRoot /var/www/html/website

    Alias /website "/var/www/html/website"

    <Directory "/var/www/html/website">
        Options None
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
</VirtualHost>
Run Code Online (Sandbox Code Playgroud)