我想更改我的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,它仍然无法工作