次の Mod Rewrite を、末尾のスラッシュをサフィックスまたはファイル名として使用せずに機能させようとしています。
RewriteEngine On
RewriteRule ^test/([^/]*)/([^/]*)/$ /example1/example2/index.php?brand=
$1&video=$2 [L]
上記は機能しますが、 /$ から末尾のスラッシュを削除すると機能しません。
要約すると、次のようになります。
www.example.co.uk/example/example2/index.php?brand=x&video=y
に書き換えます
www.example.co.uk/test/brand/video/
しかし、私はそれを機能させることができません
www.example.co.uk/test/brand/video