nginx指定链接跳转到某个固定链接地址
VPS技术分享
nginx指定链接跳转到某个固定链接地址
2021-05-22 18:43
nginx指定链接跳转到某个固定链接地址,配置如下:
if ( $request_uri = "/index.php?route=product/category&path=" ){
return 301 /abc.html;
}