如何设置别名 apache2

如何设置别名 apache2

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

答案1

我希望您在 中创建的虚拟主机中包含一个别名/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>

答案2

相关内容