I am experiencing an error when using Ultimate Tag Warrior and permalinks set up as /%category%/%postname%/
I have tried editing my htaccess to:
# UTW
RewriteEngine On
RewriteBase /
RewriteRule ^tag/(.+)/$ /index.php?tag=$1 [QSA,L]
RewriteRule ^tag/(.+)$ /index.php?tag=$1 [QSA,L]
RewriteRule ^tag/(.+)/feed/(feed|rdf|rss|rss2|atom)/$ /index.php?tag=$1&feed=$2 [QSA,L]
RewriteRule ^tag/(.+)/feed/(feed|rdf|rss|rss2|atom)$ /index.php?tag=$1&feed=$2 [QSA,L]
RewriteRule ^tag/(.+)/(feed|rdf|rss|rss2|atom)/$ /index.php?tag=$1&feed=$2 [QSA,L]
RewriteRule ^tag/(.+)/(feed|rdf|rss|rss2|atom)$ /index.php?tag=$1&feed=$2 [QSA,L]
RewriteRule ^tag/(.+)/page/?([0-9]{1,})/$ /index.php?tag=$1&paged=$2 [QSA,L]
RewriteRule ^tag/(.+)/page/?([0-9]{1,})$ /index.php?tag=$1&paged=$2 [QSA,L]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
But that dosen't seem to work, if I change my permalinks to /%year%/%monthnum%/%day%/%postname%/ or anything else that dosen't have /%category%/ as the first tag it works fine.
It seems that there is somthing awry with the /%category%/ permalinks and the /tags/ redirect that UTW uses.
Has anyone found a work around, explanation or hack to solve this problem?