After updating WP from 3.0 to 3.2.1 I started to have problem with links to categories. For example (this is my site):
http://www.anime-chronicle.pl/category/anime/kaiji-ii/
redirects to
http://www.anime-chronicle.pl/2011/04/14/kaiji-ii-01-02/ (this is the first post in this category)
but it should shove category page.
Here is my setings to permalinks: /%year%/%monthnum%/%day%/%postname%/
and .htaccess:
# BEGIN WordPress
RewriteEngine on
# Unless you have set a different RewriteBase preceding this point,
# you may delete or comment-out the following RewriteBase directive:
RewriteBase /
# if this request is for "/" or has already been rewritten to WP
RewriteCond $1 ^(index\.php)?$ [OR]
# or if request is for image, css, or js file
RewriteCond $1 \.(gif|jpg|jpeg|png|css|js|ico)$ [NC,OR]
# or if URL resolves to existing file
RewriteCond %{REQUEST_FILENAME} -f [OR]
# or if URL resolves to existing directory
RewriteCond %{REQUEST_FILENAME} -d
# then skip the rewrite to WP
RewriteRule ^(.*)$ - [S=1]
# else rewrite the request to WP
RewriteRule . /index.php [L]# END WordPress
I was searching forum for 3 hours but couldn't find the answer. Please help!
When I use default permalinks it works fine, but I really need those.