您好我的网站有404白屏错误期待主页我尝试从谷歌喜欢添加.htaccess文件。当我将永久链接设置为/?p = 121时,它会显示页面,但是当我将其转换为其他404回复时。 将此代码用于.htaccess。
# 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