For example, this link /index.php?route=product/category&path= , I just want users who visit this link to jump to the /abc.html page
How to write this? nginx
Following the voice in heart.
Try this
if ( $request_uri = "/index.php?route=product/category&path=" ){ return 301 /abc.html; }
Try this