Changing 302 redirects for permalinks to 301
-
hi guys,
i noticed that my blog does 302 redirection after i changed permalinks names, and i thought to share this finding, is very handy, actually i would like to know the reason for the devs didnt implement it in the first place.
in wp-trackback.php around line 80 the code looks like that:
if (empty($title) && empty($tb_url) && empty($blog_name)) {
// If it doesn’t look like a trackback at all…
wp_redirect(get_permalink($tb_id));
exit;
}CHANGE IT TO
if (empty($title) && empty($tb_url) && empty($blog_name)) {
// If it doesn’t look like a trackback at all…
wp_redirect(get_permalink($tb_id),301);
exit;
}job done, redirects are now 301!
Gabrio
- The topic ‘Changing 302 redirects for permalinks to 301’ is closed to new replies.