我目前正在研究如何使用 Mod rewrite 修改 php 中的 URL。
典型的 URL 可能如下所示:
http://www.fitness.com/find_a_pt/?county=&constituency=211&gender=&action=search
现在在上面的例子中只选择了一个选区。未指定县或性别。
现在上述选区指的是“达特福德”。
因此,如果 URL 显示为:
http://www.fitness.com/find_a_pt/dartford
现在增加的复杂性是性别可能是:
1) 未选择 - 根据上面的 URL
2) 男性
http://www.ego3fitness.com/find_a_pt/?county=&constituency=211&gender=1&action=search
3) 女性
http://www.ego3fitness.com/find_a_pt/?county=&constituency=211&gender=&actiom=search
因此,URL 需要阅读:
1) http://www.fitness.com/find_a_pt/dartford
2) http://www.fitness.com/find_a_pt/dartford/male
3) http://www.fitness.com/find_a_pt/dartford/female
首先,是否有可能通过 URL 重写来做到这一点,如果可以,有人可以提供一个示例供我使用。
提前感谢您的帮助。