我现在在.htaccess文件中有一个ReWrite规则:
RewriteRule ^item/?([a-zA-Z0-9_]+)?/?([a-zA-Z0-9_]+)?/?$ static/items.php?a=$1&b=$2 [NC,L]
它会选择任何带有下划线的项目:
item/new_item/new_order
但是,我需要从下划线更改为破折号来实现:
item/new-item/new-order
如果我只是在RewriteRule字符串中进行更改,则会将其分解。不知道如何解决这个问题。
RewriteRule ^item/?([a-zA-Z0-9-]+)?/?([a-zA-Z0-9-]+)?/?$ static/items.php?a=$1&b=$2 [NC,L]
答案 0 :(得分:0)
这是相当棘手的东西,但可以使用以下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]