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
大家讲道理2017-06-28 09:30:48
Try this
if ( $request_uri = "/index.php?route=product/category&path=" ){
return 301 /abc.html;
}