I have a Custom taxonomy with this rewrite:
'rewrite' => array( 'slug' => '/', 'with_front' => false),
So every term will look like this:
/
the problem with the pagination pages give 404
/ 404
/ 404 etc..
If I put a base to the rewrite like this :
'rewrite' => array( 'slug' => '/t', 'with_front' => false),
The pagination pages works :
/ Results
But I want the terms to show without a base.
How can I make the pagination work with the first rewrite?