首页 > 解决方案 > WordPress 为除主页以外的所有页面提供 404

问题描述

我想问题出在 .htaccess 文件或服务器上,但我似乎无法修复它。它只显示主页,没有其他页面......其他页面只有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

希望可以有人帮帮我?我也在使用自定义字段。但该网站一直有效,直到现在......(https://open-ieper.be

标签: wordpress.htaccesshttp-status-code-404

解决方案


推荐阅读