首頁 > 問答 > 主體
例如這個連結 /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; }