记录日常点点滴滴,欢迎来到我的小站。

0%

Ubuntu 17.04 为Apache 2.4追加虚拟目录

首先进入 /etc/apache2/sites-available/目录下,修改你的网站配置文件

标签下添加如下代码

1
2
3
4
5
6
7
8
<IfModule alias_module>
Alias /common /home/impress121/Common/

<Directory /home/impress121/Common/ >
Options Indexes FollowSymLinks MultiViews
Require all granted
</Directory>
</IfModule>

即可实现追加虚拟目录的目的