我在多站点(子文件夹)站点上使用wp_ecommerce
问题是插件从以下位置请求图像:
http://mysite/blogname/files/wpsc/category_images/cat_1.png
当图像存储在
http://mysite/blogname/wp-content/blogs.dir/16/files/wpsc/category_images/cat_1.png
所以我得到破碎的图像。
现在我猜测我的 htaccess 应该为我完成这项工作..所以这里有什么所以我的 htaccess 是错误的还是应该配置其他东西?
谢谢。
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]