Opened 19 years ago
Closed 19 years ago
#2169 closed defect (bug) (fixed)
WordPress Breaks rewrite rules
Reported by: | Denis-de-Bernardy | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | major | Version: | 2.0 |
Component: | General | Keywords: | |
Focuses: | Cc: |
Description (last modified by )
RewriteRule ^cats(.+)/?$ /tags$1 [QSA,L] RewriteRule ^tag/(.+)/?$ /tags/$1 [QSA,L] # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php </IfModule> # END WordPress
http://www.semiologic.com/tags/wordpress/ works
http://www.semiologic.com/cats/wordpress/ should redirect to the above but does not work
Change History (5)
#2
@
19 years ago
- Severity changed from critical to major
Fix:
RewriteRule ^cats(.+)/?$ /tags$1 [r=301,nc,l]
That said, I expect a to see *a lot* of support requests in the forum because of this.
Note: See
TracTickets for help on using
tickets.
Shouldn't that look like this?