wordpress分类目录全部404怎么处理,今天安装主题后发现分类目录打开都是404页面
为了确认一下,在网站主目录下打开可写的.htaccess文件
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
这样分类目录打开是404页面的问题就可以解决了