首页 > 问答 > 正文
例如这个链接 /index.php?route=product/category&path= , 我只想把访问这个链接的用户就跳转到 /abc.html 页面
这个如何写? nginx
大家讲道理2017-06-28 09:30:48
试试这个
if ( $request_uri = "/index.php?route=product/category&path=" ){ return 301 /abc.html; }