I have occasional links coming into my blog thar are unresolved of the form: wordpress/tag/movies/
Why does this fail? It's a real tag.
If I search on movies, I get the right results.
Blog is:
http://www.creatingnewworlds.org/wordpress
Theme is INove
.htaccess is:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</IfModule>