I have a CPT with slug function
(singular) and archive slug functions
(plural).
Permalink structure for:
- singular is
/function/[postname]/
- archive is
/functions/[page-x/]
.
(can poke live at QueryPosts )
This works and looks fine, however I have logged some cases when people manipulate URL directly, like:
/functions/[postname]
(typing name after archive page)/function/
(erasing function name)
While this is not complicated to correct with some code explicitly, there would be more post types and it seems like data and logic are quite sufficient for generic solution (really I kinda expected WP to handle it, it does quite a lot to correct link issues).
However I have deep WP rewrite traumas and could use some pointers. 🙂
To sum it up:
How-To catch and redirect URLs that are correct, other than wrongly using archive slug instead of singular and vice versa?
Archive setup is registered like this:
'has_archive' => 'functions',
'rewrite' => array(
'feeds' => false,
'with_front' => false,
),