現在、.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]