わかりました、.htaccess の URL を書き換えようとしています
現在、URL は次のようになっています。
http://host.com/catalog/search/item/465?item=465
のようにしたい
http://host.com/catalog/search/item/465
私の書き直しは次のとおりです。これは正規表現テスターで動作するようです:
RewriteRule search/item/([^?]+) http://host.com/catalog/search/item/$1 [R=301,L]
しかし、代わりに私は得る:
"This page isn't redirecting properly."