我如何才能使以下网址正常工作(将我重定向到“漂亮”网址)?
访问以下链接:
pictures.php?genre=all&sortby=popularity
例如,访问的重写部分(localhost/mydomain/pictures/all/popularity)正在工作,但唯一不工作的一方是,每当我访问上面的示例时,它都会将我重定向到它。
我当前的代码:
RewriteEngine on
RewriteCond %{THE_REQUEST} /pictures\.php[?\s] [NC]
RewriteRule ^pictures\.php?genre=([a-zA-Z]+)&sortby=([a-zA-Z]+)$ /mydomain/pictures/$1/$2 [NC,R=302,L,NE]
帮助将得到appericiated!