0

有人能告诉我为什么我有一个多站点,它的 URL 中包含 /blog/ 而另一个没有吗?

例如:

http://site1.com/blog/article

http://site2.com/article

如何逐个站点更改此设置?

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

.htaccess 文件的代码是什么?

谢谢!:)

4

1 回答 1

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]
于 2013-09-04T14:08:13.667 回答