0

我的永久链接设置:默认:/?p=123有效,但如果我按帖子名称切换到 所有页面都停止工作,只是转到 404

4

1 回答 1

1

检查您的永久链接设置,看看您是否在 .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>
于 2013-08-24T23:08:07.130 回答