I'm creating a new website based on a theme using custom post type and WordPress 3.2.1.
The problem is that my content was previously using %postname% permalinks and all my SEO is build on this. Using CPT add a slug like : http://mysite.com/slug-cpt/postname
I tried this rule in the register_post_type function but it doesn't work :
'rewrite' => array('slug' => false, 'with_front' => false)
I also read this but it's not good for me : Permalinks in Custom Post types
Any idea ?
