私はApache書き換えURLの初心者です。
URL の書き換えに問題があります。
www.test.com/abc/index.php?val=123 を www.test.com/abc/123/index.php に書き換えたい
注: abc はフォルダーです
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/([0-9]+)/index.php $1/index.php?val=$2 [QSA,L]