1 つの Web サイト '/resume/' にしかアクセスできません。サブディレクトリの Web サイトは外部から見えませんか? サイト '/resume2/' は /resume/ を指そうとします。すべてのサブサイトが /resume/ を指そうとしています
<VirtualHost *:80>
ServerName resume
ServerAlias resume
DocumentRoot "/var/www/html/resume/"
<Directory /var/www/html/resume/>
DirectoryIndex index.php phpinfo.php index.html index.htm
Options Indexes MultiViews FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerName resume2
ServerAlias resume2
DocumentRoot "/var/www/html/resume2/"
<Directory /var/www/html/resume2/>
DirectoryIndex index.php phpinfo.php index.html index.htm
Options Indexes MultiViews FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>