我有一个关于 htaccess 的问题,它正在重写。
我有这个代码:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^users/(\d+)*$ ./profile.php?id=$1
RewriteRule ^threads/(\d+)*$ ./thread.php?id=$1
RewriteRule ^search/(.*)$ ./search.php?query=$1
example.com/users/123
等于example.com/profile.php?id=123
。_
如果我将链接更改为:example.com/users/123/John
htaccess 会忽略 /John 或 ID 后的任何额外字符吗?
事实上,约翰是123 ID的实名,我希望它是。