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.
我想将此页面 mysite.com/product.php(.*) 重定向到 mysite.com/home.php 但它正在将其重定向到例如 mysite.com/home.php?id=201
意味着它将 mysite.com/product.php?id=201 重定向到 mysite.com/home.php?id=201
问题出在哪里...?
这应该有效:
RewriteEngine On RewriteRule ^product\.php /home.php? [R=301,L]
最后的问号将删除查询字符串。