nginx如何指定链接跳转到其他页面

【字号: 日期:2022-06-20浏览:20作者:雯心

问题描述

例如这个链接 /index.php?route=product/category&path= , 我只想把访问这个链接的用户就跳转到 /abc.html 页面

这个如何写? nginx

问题解答

回答1:

试试这个

if ( $request_uri = '/index.php?route=product/category&path=' ){ return 301 /abc.html;}

相关文章: