admin管理员组文章数量:1130349
New on Nginx based web server setup and finding a way to create mass 301 redirects in a WP site without using any plugins.
It is fairly easy in Apache based web server as you only need to put this at the end of your .htaccess file but this won't work in Nginx:
Redirect 301 /old-url /new-url
New on Nginx based web server setup and finding a way to create mass 301 redirects in a WP site without using any plugins.
It is fairly easy in Apache based web server as you only need to put this at the end of your .htaccess file but this won't work in Nginx:
Redirect 301 /old-url /new-url
1 Answer
Reset to default 0Seems the easiest way to do it is via PHP without changing any Nginx server config by adding this at the start of the wp-config.php file:
// Trailing slashes matters here so /old1 is different from /old1/
$redirect_targets = array(
'/old-url' => '/new-url',
'/old-url2' => '/new-url2',
'/old-url3' => '/new-url3',
);
// Added a way not to accidentally break wp-cli
if ( (isset($redirect_targets[ $_SERVER['REQUEST_URI'] ] ) ) && (php_sapi_name() != "cli") ) {
header('HTTP/1.0 301 Moved Permanently');
header('Location: https://'. $_SERVER['HTTP_HOST'] . $redirect_targets[ $_SERVER['REQUEST_URI'] ]);
exit();
}
New on Nginx based web server setup and finding a way to create mass 301 redirects in a WP site without using any plugins.
It is fairly easy in Apache based web server as you only need to put this at the end of your .htaccess file but this won't work in Nginx:
Redirect 301 /old-url /new-url
New on Nginx based web server setup and finding a way to create mass 301 redirects in a WP site without using any plugins.
It is fairly easy in Apache based web server as you only need to put this at the end of your .htaccess file but this won't work in Nginx:
Redirect 301 /old-url /new-url
1 Answer
Reset to default 0Seems the easiest way to do it is via PHP without changing any Nginx server config by adding this at the start of the wp-config.php file:
// Trailing slashes matters here so /old1 is different from /old1/
$redirect_targets = array(
'/old-url' => '/new-url',
'/old-url2' => '/new-url2',
'/old-url3' => '/new-url3',
);
// Added a way not to accidentally break wp-cli
if ( (isset($redirect_targets[ $_SERVER['REQUEST_URI'] ] ) ) && (php_sapi_name() != "cli") ) {
header('HTTP/1.0 301 Moved Permanently');
header('Location: https://'. $_SERVER['HTTP_HOST'] . $redirect_targets[ $_SERVER['REQUEST_URI'] ]);
exit();
}
本文标签: How to create mass 301 redirects with PHP in Nginx server without using a WP plugin
版权声明:本文标题:How to create mass 301 redirects with PHP in Nginx server without using a WP plugin 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749037405a2306606.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论