我是 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]