我有一个简单的表格,方法是 get
<form method="get" action="search.php">
<input type="text" name="category_name" value="cars">
<input type="text" name="location" value="newyork">
</form>
重定向到此链接:
http://my-site.com/search.php?category_name=cars&location=newyork
我会为成为一个重写规则:
http://my-site.com/cars/newyork.html
我尝试使用此代码但不起作用:
RewriteEngine on
RewriteRule (.*)/(.*)\.html$ search.php?category_name=$1&location=$2 [R=301,L]