例如這個連結 /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; }
試試這個