You can manually create pages named category and app in admin under the Pages menu, and use a custom page template for each to list out taxonomy terms or whatever you need.
EDIT – 301 redirect a request that matches the pagename rewrite to another page:
function wpa_parse_query( $query ){
if( isset( $query->query_vars['pagename'] )
&& 'apps' == $query->query_vars['pagename'] ){
wp_redirect( home_url( '/other-page/' ), 301 );
exit;
}
}
add_action( 'parse_query', 'wpa_parse_query' );
Related Posts:
- taxonomy/category term in URL slug irrelevant for post?
- Expired event redirect to parent category
- How to have article URL like example.com/article1 and example.com/foo/article2?
- How to show taxonomy on front page
- How to manage the links of a new taxonomy
- Custom Post Type Archive with Dynamic Taxonomy Filtering
- taxonomy term in URL slug won’t forward to the correct term for custom post like it does for default categories/normal posts
- Append taxonomy url
- The Difference Between Hierarchical and Non-Hierarchical Taxonomies?
- Attaching taxonomy data to post with wp_insert_post
- Can the default “post tags” taxonomy be renamed?
- Custom taxonomy list page?
- tax_query in get_posts() not working?
- Catch 404 after changing permalink structure from /%postname%/ to /%category%/%postname%/
- What is wp_insert_term “alias_of” arg for?
- List Hierarchical Term List with Count with Related Term
- Redirecting WordPress /.htaccess / HSTS / SSL
- Is there a way to set singular/plural labels for taxonomy term names?
- How to display child term of current term’s parent taxonomy?
- List taxonomy terms as links
- Sorting custom taxonomy causes menus error
- How to setup 301 redirects for multiple query string URLs?
- Can we have same term slug in different taxonomies?
- Add additional data to a specific taxonomy term when used in a post
- Display the number of published posts for each custom taxonomy term?
- Get wordpress taxonomy archive and sort by year
- Search for tags
- How does WordPress redirect to WooCommerce shop page? [closed]
- Display Post by taxonomy and taxonomy child if exist
- Missing term_id and term_taxonomy_id when adding a term using wp_insert_term() function
- How can I remove links from the function “get term list”?
- Conditional tag affecting taxonomy term and its children?
- WordPress REST get all items without a taxonomy assigned
- How do I get the current tag out of a taxonomy?
- If search matches taxonomy
- Custom Field as Custom Taxonomy?
- add_rewrite_rule fro html to another url not working
- Changed permalink structure. Need help with redirecting old posts
- WordPress redirects non-existing url to existing ones – how to disable
- how to show only last child terms of a taxonomy
- Modify the query method when adding category filtering function to the custom post list
- How to redirect to clean links with this code
- How to list taxonomy terms in reverse order?
- need to get postthumnails from a post whithin a category custom post type
- Individual post. Meta_key, taxonomy or post status for separation?
- Taxonomy archive page WP_Query does not return get_the_permalink() or get_permalink() value
- How to restrict users in edit post that can just select exists tags? not add new
- How to generate a list of all urls
- How to show taxonomy image instead of taxonomy name on a list
- benefits of the table ‘wp_term_taxonomy’
- How to save a multiple checkbox array into a non-hierarchical taxonomy
- Display a tag only if there is a description
- `get_terms()` with `child_of` and `childless` combined
- Add text to the end of each list item in wp_list_categories
- Return Taxonomy Name for Each Term
- Taxonomy list names with lowercase
- echo term name outside the loop, using term slug
- What are these undocumented arguments for register_taxonomy?
- Dynamic filtering of posts with custom taxonomies
- Sorting tags by name
- How to get terms from a custom taxonomies after WordPress 4.5.0
- Search Media by taxonomy
- Get Taxonomy name from “registered_taxonomy” hook
- In two-category searches, where does WordPress save the title of the 2nd category?
- Show only first child in dropdown
- Custom Post Type + Custom Taxonomy = Archive Listing Page Problems
- Taxonomy term archive default loop returns 1 record instead of 8
- If has_term, load other theme
- Preventing Canonical Redirect for CDN
- Related terms – Terms that feature in post of current term
- Bug using wp_insert_term with switch_to_blog
- Select query with two and two related taxonomies
- Taxonomy Dropdown Question
- CPU overload spam – redirect link to wp-admin and new post
- Customize menu link for taxonomy in WP menu
- How To Query For An Empty Taxonomy Field
- Is possible hide hierarchical select dropdown created by jetsmartfilters? (only visual issue)
- Finding id of taxonomy by name in custom post type
- How best to structure multiple CPTs and tax within a ‘resources’ section
- How to get user details by name
- Add specific content to a taxonomy results page
- Set the limit of taxonomy per page
- How to position taxonomy meta box on page
- Same page for startpage and archive?
- Unable to log in as admin
- how to print post tags [duplicate]
- Filtering posts by taxonomy and meta_value
- What to do with shared terms splitting in WordPress 4.2?
- How to get a query odered by N of matching taxonomies?
- How to create short urls for sharing and downloadable content?
- Using a taxonomy value as part of a post URL
- Child Terms not Displaying on the Taxonomy Term Admin Screen
- multiple taxonomies in wp_list_categories’ $args
- Multiple Parent Category URLs
- How to orderby Taxonomy Term in a WP Query
- How to extract URLs from wordpress taxonomies
- Custom Titles for Multiple Tag Taxonomy Page
- Add new taxonomy in WP without generate any url
- Operator ‘AND’ in the get_posts() function’s tax_query terms not working
- Different templates for parent and children Taxonomy