我的URL语法现在就像
http://20percents.com/au/restaurant/?shop=Fantasia%20MacArthur%20Central
而且,我怎样才能将其重写为
http://20percents.com/au/Fantasia-MacArthur-Central
从网址中移除restaurant
,从网址中移除?shop
,然后将%20
更改为-
我试过
RewriteEngine on
RewriteRule ^restaurant/([^/\.]+)/?$ restaurant?shop=$1 [L]
这不起作用
我也尝试过,这也没用。
RewriteCond %{QUERY_STRING} val
RewriteRule ^/restaurant/?shop
由于