Wordpress wamp上的多站点无法在第一次单击时创建新站点

Wordpress wamp上的多站点无法在第一次单击时创建新站点,wordpress,wamp,wampserver,Wordpress,Wamp,Wampserver,问题是: 我在WampServer上安装了Multisite,当我单击“添加站点”时,页面变为空白 迄今为止已完成: 下载了WampServer 已配置的虚拟主机 下载了压克力,所以我可以有通配符域 创建数据库并安装普通WP 跟踪并更新到MultiSite 登录 点击我的网站->网络管理员 单击站点->添加新站点 输入所需信息 点击“添加站点”等待了40-50秒 这一页空白了 如果我在apache |模块下单击backspace或返回,请使用子文件夹或子域启用“重写”,您的httpd.con

问题是:

我在WampServer上安装了Multisite,当我单击“添加站点”时,页面变为空白

迄今为止已完成:

  • 下载了WampServer
  • 已配置的虚拟主机
  • 下载了压克力,所以我可以有通配符域
  • 创建数据库并安装普通WP
  • 跟踪并更新到MultiSite
  • 登录
  • 点击我的网站->网络管理员
  • 单击站点->添加新站点
  • 输入所需信息
  • 点击“添加站点”等待了40-50秒
  • 这一页空白了

如果我在apache |模块下单击backspace或返回
,请使用子文件夹或子域启用“重写”

,您的
httpd.conf
中有
NameVirtualHost*:80
吗?@LeonardChallis实际上
NameVirtualHost
会出现在\extras\vhost httpd.conf`文件中,并且只有在您仍在使用Apache 2.2时才会出现,因为如果您正在使用Apache 2.4,它将不再有效
<VirtualHost *:80>
  ServerName smallurl.com
  ServerAlias www.smallurl.com *.smallurl.com
  DocumentRoot C:/wamp/www2
  ErrorLog "C:/wamp/www2/logs/error.log"
  CustomLog "C:/wamp/www2/logs/access.log" common

  # - A few helpful settings...
  <Directory "C:/wamp/www2">
    order allow,deny
    allow from all
    # - Enables .htaccess files for this site
    AllowOverride All
  </Directory>
</VirtualHost>

<VirtualHost *:80>
  ServerName localhost
  DocumentRoot C:/wamp/www
  ErrorLog "C:/wamp/www/logs/error.log"
  CustomLog "C:/wamp/www/logs/access.log" common
</VirtualHost> 
127.0.0.1       localhost
127.0.0.1   www.smallurl.com
127.0.0.1   smallurl.com
127.0.0.1   *.smallurl.com
# Virtual hosts #yaniv#
Include conf/extra/httpd-vhosts.conf