例如这个链接 /index.php?route=product/category&path= , 我只想把访问这个链接的用户就跳转到 /abc.html 页面
这个如何写? nginx
Following the voice in heart.
试试这个
if ( $request_uri = "/index.php?route=product/category&path=" ){ return 301 /abc.html; }
试试这个