Rewrite **
www.thaippt.com/_property.php?section=5&id=553
到
www.thaippt.com/property/5/553/
代码
RewriteRule ^property\/([^/]*)/([^/]*) /_property.php?section=$1&id=$2 [L,QSA]
它可以工作,但我需要重定向查询字符串。
如果我去" _property.php?section=5&id=553"
我需要重定向到"/property/5/553/"
答案 0 :(得分:0)
您需要在另一个规则之上使用此规则。
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\ /+_property\.php\?section=([^\s&]+)&id=([^\s&]+)
RewriteRule ^ /property/%1/%2? [R=301,L]
让我知道这对你有用。