为什么URL在我的一个多站点WP站点上包含/ blog /而不是另一个?

时间:2013-09-04 13:08:12

标签: wordpress .htaccess permalinks

有人可以告诉我为什么我在网址中有一个包含/ blog /的Multisite而另一个没有?

EG:

http://site1.com/blog/article

http://site2.com/article

如何逐个网站更改此内容?

当我更改它时,应该如何将当前URL重定向到新位置。

.htaccess文件的代码是什么?

谢谢! :)

1 个答案:

答案 0 :(得分:0)

如果你使用WPMU的子目录安装,.htaccess必须像下面的

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [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).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]