Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 .htaccess 中执行以下 301 重定向:www.mysite.com/products/xxxxxx 到 www.mysite.com/index.php?route=product/product&product_id=xxxxxx
其中“xxxxxx”是我的产品 ID
请帮忙 :)
//301 Redirect Entire Directory RedirectMatch 301 www.mysite.com/products/(.*) www.mysite.com/index.php?route=product/product&product_id=$1