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

时间:2013-05-10 00:16:09

标签: wordpress wamp wampserver

问题:

我在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已激活。

基本上涵盖了一切。

任何帮助都将受到高度赞赏。

1 个答案:

答案 0 :(得分:0)

在apache | modules下重写

相关问题