我是 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
以下是来自 Digital Ocean 的精彩教程:https://www.digitalocean.com/community/articles/how-to-set-up-apache-virtual-hosts-on-ubuntu-12-04-lts