3

问题:

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

到目前为止完成:

  • 下载的 WampServer。
  • 配置的虚拟主机。
  • 下载了亚克力,所以我可以拥有通配符域。
  • 创建数据库并安装正常的WP
  • 关注 http://codex.wordpress.org/Create_A_Network并更新到 MultiSite。
  • 登录。
  • 单击我的站点-> 网络管理员。
  • 单击站点->添加新的。
  • 输入了所需的信息。
  • 单击“添加站点”等待 40-50 秒。
  • 页面一片空白。

如果我单击退格键或返回<-浏览器,然后再次单击“添加站点”,它可以工作,我可以访问该站点,像正常安装一样创建帖子。

任何想法都会很棒。

以下是一些技术细节:

我的 httpd-vhosts.con 看起来像这样:

<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> 

我的 AcrylicHost.txt:

127.0.0.1       localhost
127.0.0.1   www.smallurl.com
127.0.0.1   smallurl.com
127.0.0.1   *.smallurl.com

在 httpd.conf 中:

# Virtual hosts #yaniv#
Include conf/extra/httpd-vhosts.conf

rewrite_module被激活。

基本上涵盖了所有内容。

任何帮助将不胜感激。

4

1 回答 1

0

在 apache|modules 下打开重写

于 2015-03-08T07:58:57.563 回答