我现在在.htaccess文件中有一个ReWrite规则:
RewriteRule ^item/?([a-zA-Z0-9_]+)?/?([a-zA-Z0-9_]+)?/?$ static/items.php?a=$1&b=$2 [NC,L]
它会select任何有下划线的项目:
item/new_item/new_order
但是,我需要从下划线变成破折号,以使其:
item/new-item/new-order
如果我只是在RewriteRulestring中进行更改,则会将其打破。 不知道如何解决这个问题。
RewriteRule ^item/?([a-zA-Z0-9-]+)?/?([a-zA-Z0-9-]+)?/?$ static/items.php?a=$1&b=$2 [NC,L]
这是相当棘手的东西,但可以使用以下Rewrite
规则:
RewriteEngine On # first replace each _ by - recursively RewriteRule ^(item)/([^_]*)_(.*)$ /$1/$2-$3 [L,NC] # now usual stuff to forward request to static/item.php RewriteRule ^(item)/([^_/]*)/?([^_/]*)/?$ static/$1.php?a=$2&b=$3 [L,QSA,NC]