Hello,
I just upgraded to WP2.0. 2 out of 3 blogs of mine have no problems but I have a problem with the 3rd.
I'm using permalink structure as /%year%/%monthnum%/%day%/%postname%/
I have no problems with that. It's working good.
However I use some shortcut urls inside my posts for other posts of mine.
So before WP2.0 I was using an extra mod_rewrite rule
in my htaccess as:
RewriteRule ^(shortcut)/(.+)?/?$ /index.php?name=$2&page=$3 [QSA,L]
simply I catch whatever url starts with the keyword (shortcut) and match it to index.php with the name=%postname%
I realized that WP2.0 has a non-verbose structure as
RewriteRule . /index.php , really cool job but it effects
my shortcuts.
So I changed use_verbose_rules to true in WP_Rewrite and recreated the permalink structure but it didn't help.
Currently my site is down because of this problem.
How can I make custom permalinks like my shortcuts but still continue using long permalik structure?
Thank you.
Ron.