It turns out it was because the default category archive pages do not require the URL to start with /category
. WordPress already matches the path /{category-slug}
for the default category
taxonomy archive.
I fixed it by changing the default category archive rewrite to start with /category
.
function move_category_rule($rules) {
if(array_key_exists('(.+?)/?$', $rules)) {
$val = $rules['(.+?)/?$'];
unset($rules['(.+?)/?$']);
$rules['category/(.+?)/?$'] = $val;
}
return $rules;
}
add_filter('rewrite_rules_array', 'move_category_rule');
Related Posts:
- show ALL latest posts with archive.php on example.com/latest
- URL Rewrite and Archive Template Files – Post Type vs. Taxonomy
- How to create custom URL routes?
- web.config conflict on IIS
- How do I remove a rewrite rule?
- add_rewrite_rule: $matches var not replaced by captured value
- How-to add rewrite rules to point the uploads folder to a subdomain
- add_rewrite_rule not loading correct page nor getting variables
- Disable wordpress pagination URL rewrite for specific page
- How to use Post Custom Metadata in Post Titles and Post Permalinks
- rewrite_rule() not preserving the query string
- Mod_rewrite delete parameter in 301 Redirect
- add_rewrite_rule not working for page var
- WordPress URL rewrite regex
- Custom rewrite rules are sending everything to index.php
- WordPress Network on IIS7/SQL Server – Rewrite Issues
- Custom comments
- How to Change Author Posts URL
- Adding the amp url prefix to the beginning
- Tricky URL rewrite with custom values in url
- Rewrite url / permalink for default archive – yearly / monthly
- Change permalink for default archive – yearly
- Add rewrite rule to call front-page.php?
- Add a query string to ALL links on site
- How make a multi language routes, with rewrite rules or rewrite endpoints?
- Add rewrite rule for rewrite endpoint
- Having trouble with using add_rewrite_rule and pagination
- How to have multiple rewrite endpoints in the same URL?
- Rewriting rules: difference between ‘init’, ‘rewrite_rules_array’, ‘generate_rewrite_rules’?
- add_rewrite_rule is not taking effect in WordPress? .htaccess file doesn’t update
- Multiple Permalinks for Same Post
- Remove “/page/1” from the URL
- hard flush_rewrite_rules() not regenerating .htaccess
- Rewriting URLs in WordPress
- add_rewrite_rule() to route to file other than index.php
- ‘rewrite_rules_array’ or ‘generate_rewrite_rules’ for adding custom rewrite rules?
- Rewrite Rules Are Redirecting and Not Passing VARs
- WordPress rewrite rules don’t need ^?
- custom template rewrite
- Custom rewrite not working
- Disable Pagination on Pages
- Rewrite wp-login.php URLS to static pages?
- How to add a custom redirect rule for Post as subdomains?
- How to preserve the query string while using add_rewrite_rule and default public query vars
- Changed pagination URLS to use p= instead of paged=
- A clean custom rewrite rule for weekly archives
- How to use add_rewrite_rule in subdomain
- Rewrite the default post object’s permalink
- QSA Rewrite Rule
- Enpoint Not Found in Rewrite Tag Permalink
- URL rewriting with custom user meta “/%shop_name%/gallery/%gallery%”
- Custom Rewrite Rules
- URL Rewrite with Custom Variables
- ReWrite rule for files of a previously standalone blog moved to network
- How to add custom rewrite rules and point to specific templates
- Rewrite /category/cars into /topics/cars
- Best way to trigger rewrite rules
- Trouble with question mark in rewrite rule
- What URL rewriting rule should I write to retrieve a var in the URL?
- How to use wp rewrite to hide form action url?
- WordPress Rewrite rule is not working
- Redirect URL to an existing page with query string or #! added on
- How do I make WordPress revise an .htaccess file a certain way?
- Rewrite rule that wp-login.php?action=register is left alone
- How to change an existing wordpress page rewrite rule?
- URL rewriting in wordpress using parameters
- Rewrite rules – page does not exist
- Use URI suffix as parameter and ignore when resolving page
- Why wordpress rewrite my custom URL?
- Rewrite rule regex help required
- Redirect empty search to another page
- Dynamic URL with rewrite rule not working
- Rewrite dynamic URLs as pretty URLs in WordPress functions.php (add_rewrite_rule) – what’s wrong with my code?
- How to get relative page for every post: /post-1/contact. /post-2/contact
- Rewrite rule can’t get the ID from rewrited
- Rewrite rule not working, suspect redirect string
- WordPress Rewrite Rule to EITHER Match 1 or 2 Taxonomies when adding to URL
- Rewrite Rule added but showing 404 rather than specified page
- Blog List Page 404 With Custom Post Type Rewriting to Blog Parent
- Custom taxonomy Rewrite Rule
- WordPress doesn’t remember my custom rewrite rule
- Custom urls in WordPress involving page slugs
- I want to add one extra field to my URLs, I’m using Rewrite functions but it doesn’t work
- Font Page overrides rewrites
- rewrite rules social share links
- add_rewrite_rule is not fired
- Custom URL scheme – paramters on custom post type
- get_permalink is getting old rewrite rule
- rewrite rule for home/index page
- WordPress Custom Rewrite Rule
- Additional .htaccess rules based on wp page
- URL Rewriting in WordPress
- Rewrite URL variable to custom path
- Rewrite function
- Use add_rewrite_rule to change subpage url
- Rewrite Page Parameters
- Rewrite rule to simulate page hierarchy results in 404
- add_rewrite_rule not working with custom variables
- add_rewrite_rule doesn’t work when trying to add a new parameter at the end of URL
- Standard Regex syntax doesn’t work in WordPress rewrite rule