Apache的主配置文件为apache2.conf
位置在 /etc/apache2/
<Direction></Direction>中修改目录访问权限
web文件根目录在:
/etc/apache2/sites-available/000-default.conf配置文件中修改
修改配置文件后重启
sudo /etc/init.d/apache2 restart
/etc/apache2/port.conf文件中修改端口 ,默认为: Listen 80
设置多文件目录的方法:
1.复制/etc/apache2/sites-available/000-default.conf中的配置到新的文件中
如:
sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/001-default.conf
2. 修改新文件中的DocumentRoot 为新目录
3. 创建链接到etc/apache2/sites-enabled/目录下,如:
sudo ln -s /etc/apache2/sites-available/001-default.conf /etc/apache2/sites-enabled/001-default.conf
4. 在/etc/apache2/apache2.conf文件中添加新目录权限(XXX表示目录):
<Directory XXX>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
5. 重启apache
网友评论