Apache 虚拟主机始终显示默认页面

Apache 虚拟主机始终显示默认页面

我有一台 Debian Jessie VPS 服务器,我想在上面托管 3 个 Wordpress 网站。我已经修改了第一个网站的虚拟主机www.exemplesite1.com( /var/www/html/wordpress1),它正在运行。现在我想添加第二个网站。我创建了文件夹/var/www/html/wordress2并为第二个网站创建了虚拟主机文件www.examplesite2.com。但是当我尝试访问时,www.exemplesite2.com我得到的是 Apache 默认页面,如果使用我的服务器的 IP 地址,它就可以正常工作。

<VirtualHost *:80>
    ServerAdmin webmaster@localhost
    ServerName exemplesite2.com
    ServerAlias www.exemplesite2.com
    DocumentRoot /var/www/html/wordpress2
    Redirect permanent /phpmyadmin https://xxxxxxx.ovh.net/phpmyadmin
    <Directory />
            Options FollowSymLinks
            AllowOverride None
    </Directory>
    <Directory /var/www/html/wordpress2>
            Options FollowSymLinks
            AllowOverride All
    </Directory>
      ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
            AllowOverride None
            Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
            Order allow,deny
            Allow from all
    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog ${APACHE_LOG_DIR}/access.log combined

相关内容