Apache2 虚拟目录配置&修改默认网页

虚拟目录配置

修改默认的配置文件
/etc/apache2/sites-available/000-default.conf

在VirtualHost中间添加:

Alias /data1 "/data1/"

Options +Indexes +FollowSymlinks
AllowOverride All
Require all granted

注意上面第一行 /data1 千万不要写成 /data1/
否则使用http://localhost/data1这个网址就怎么都打不开网页了,怎么弄都是报404错误

image.png

修改默认网页

修改/etc/apache2/mods-available/dir.conf中的内容
原来是:


    DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm 

添加上想要的/wordpress就行啦


    DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm /wordpress

你可能感兴趣的:(Apache2 虚拟目录配置&修改默认网页)