所以我有一种奇怪的麻烦。我有一个重写规则
mysite.com/brand.php?brand=example&ref=ex1
至
mysite.com/brand/example/ex1
我设法做到了,但还有另一个问题:当你输入这个时:
mysite.com/brand/example/ex1.html
或者
mysite.com/brand/example/ex1.php
我明白了:
mysite.com/brand/example/ex1?ref=ex1.php&brand=example
谁能告诉我为什么会得到这个重定向以及如何摆脱它?
我试过这个:
RedirectMatch ^brand/([A-Za-z0-9-\.\_]+)/([A-Za-z0-9-\.\_]+)php$ /brand/$1/$2
或这个:
RedirectMatch ^brand/([A-Za-z0-9-\.\_]+)/([A-Za-z0-9-\.\_]+)\.php$ /brand/$1/$2
但它根本行不通。
请任何人帮助我!