我有一个域
我需要添加 wordpress 多站点
所以编辑我的 .htaccess 文件
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
<IFModule mod_url.c>
ServerEncoding UTF-8
ClientEncoding EUC-KR
</IFModule>
在 RewriteBase / RewriteRule 上 RewriteEngine ^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]
</IfModule>
</IfModule>
<IFModule mod_url.c>
ServerEncoding UTF-8
ClientEncoding EUC-KR
</IFModule>
.htaccess 更改后..
但不工作我认为编辑的 .htaccess 文件只适用于非子域网站......
-
我有子域站点,我想要使用子文件夹类型多站点的多站点
我能做些什么?