我使用多站点 wordpress,昨天我从 http 更改为 https。起初我有很多关于更新 url 的问题。所以我研究并应用了一些方法,例如在 MySQL 上直接查询更改 https,设置 .htacess 如下:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
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]
还在 functions.php 上使用更新:
update_option('siteurl','https://www.//example.com');
update_option('home','https://www.example.com');
最后,所有链接都运行良好。
但我在 Netword 管理菜单遇到了一个问题
这是我的屏幕:
所有网站网址都很好(https://www。) http://imgur.com/7V0fr8r
但只有这个菜单网址只有 https:// 非 www http://imgur.com/TAxZmrS
如何修复网络管理菜单以显示https://www。?
谢谢