对于多站点设置,缩略图不会显示在媒体库中

时间:2015-09-30 07:38:33

标签: wordpress .htaccess

我正在使用wordpress 4.3.1,并且缩略图不会显示在子网站的媒体库中,所有图像即使在mainsite中也能完美地工作。媒体库也可以在主库中正常工作。即使网格布局也不起作用,只是无限加载。我到处搜索并浪费了一整天仍然无法找到解决方案:(我的.htaccess文件

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]

# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]

# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule  ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
RewriteRule  ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
RewriteRule . index.php [L]
</IfModule>
# END WordPress

1 个答案:

答案 0 :(得分:0)

我只需要重新安装整个Multisite网络,因为我的主域已经有了一个子网站。

如果你的主域名是:

http://www.example.com

您需要使用主域重新安装网络:

http://example.com

我做到了,图片再次显示。