apache目录别名

#默认家目录
DocumentRoot "/var/www/html"<Directory "/var/www"> AllowOverride None # Allow open access: Require all granted </Directory><Directory "/var/www/html"> Options Indexes FollowSymLinks AllowOverride None Require all granted </Directory> #别名目录要存在(空目录即可) <IfModule alias_module> Alias /base/ "/var/www/html/centos7/base_centos7/" Alias /epel/ "/var/www/html/epel7/epel7/" Alias /updates/ "/var/www/html/centos7/updates_centos7/" Alias /extras/ "/var/www/html/centos7/extras_centos7/" </IfModule>
原文地址:https://www.cnblogs.com/chengd/p/6946554.html