• Hello,

    I noticed there is another post on here regarding the same issue but the plugin author did not respond to it and the topic is now closed

    In the Master Override Options section it states “(Quick 301 Redirects will always be 301)”. This is not true. Line 3063 of the file page_post_redirect_plugin.php contains:

    wp_redirect($useURL,$this->pproverride_type);

    Which sets the redirect type based on the “Make ALL Redirects this type:”

    To resolve this, I suggest changing line 3063 to:

    wp_redirect($useURL, 301);

    This will ensure quick redirects will always use 301 regardless of options selected, as they are supposed to

    https://www.ads-software.com/plugins/quick-pagepost-redirect-plugin/

  • The topic ‘Quick 301 Redirect bug’ is closed to new replies.