How can I remove redirect?
-
Hello. example:
https://www.ozgurbilgi.net/etiketler/aysegul-tecimer (no such link)
to https://www.ozgurbilgi.net/aysegul-tecimer-ustsuz-danscilar
I tried this
function remove_redirect_guess_404_permalink( $redirect_url ) { if ( is_404() && !isset($_GET['p']) ) return false; return $redirect_url; } add_filter( 'redirect_canonical', 'remove_redirect_guess_404_permalink' );
I tried this
DELETE FROM <code>wp_postmeta</code> WHERE <code>meta_key</code> = '_wp_old_slug'
but these did not solve the problem. How can I cancel this redirect? thanks
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘How can I remove redirect?’ is closed to new replies.