我有一个WP网站,我已经有一段时间没有看了。我刚刚登录更新了它的各个方面,包括WP本身,现在已经在5.0.2上了。
现在,如果我单击任何仪表板链接-帖子、外观等-我会发现页面未找到。如果我删除HTAccess,那么它会再次工作。。。直到WP恢复。这个网站没有什么特别之处。
HTAccess是标准的WP-one:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
我怎样才能找出哪里出了问题?