永久链接wordpress中删除index.php后出现404错误

时间:2019-01-25 09:20:32

标签: wordpress .htaccess http-status-code-404 httpd.conf permalinks

我想更改我的WordPress博客中的永久链接。我选择了/%category%/%postname%/。更改后,出现404错误。如果我添加/index.php/%category%/%postname%/,则效果很好,但是,我不需要此类链接。我的.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

我检查了httpd.conf并添加了这样的行 LoadModule rewrite_module modules/mod_rewrite.so

如果在我的wordpress链接中没有indes.php,它仍然无法工作

1 个答案:

答案 0 :(得分:0)

请勿编辑.htaccess文件,在WordPress中转到“后端设置->永久链接”页面,您可以在其中管理此设置。检查屏幕截图:

enter image description here