在 Godaddy wordpress 站点中不显示内页,它只显示主页和 wordpress 管理页面。在“永久链接设置”中单击保存更改时,它会显示“您应该立即更新您的 web.config”。当我在我的站点中添加 web.config 时,它显示 500 错误(主页和管理页面也是)现在该怎么办?修复 500 错误或修复 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
Run Code Online (Sandbox Code Playgroud)