からURLを書き換えようとしています
example.com/test/?var=somevalueまたはexample.com/test/page1.html?var=somevalue
に
example.com/test/somevalue/
ここにコードがあります
RewriteCond %{REQUEST_URI} test/$
RewriteCond %{QUERY_STRING} var=([a-z]*|[a-z]*\-[a-z]*)$
RewriteRule ^test/(.*)$ /test/%1/page1.html? [R=301,L]
これは今のところ、example.com/test/?var=somevalue という URL でのみ機能します。動作しないのは、query_string の前に page[1-9][0-9]*\.html を使用した URL です。