事情是这样的:
我的 .htaccess 中有这个 URL 重写条件:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([-A-Za-z0-9]+)/([A-Za-z0-9\-_]+) app.php?pattern=$1&content=$2 [L]
然后,它与此 url 完美配合,例如:
www.mysite.com/pony/mycontent
但是当我尝试添加一些这样的 Http GET 参数时:
www.mysite.com/pony/mycontent?moreparameter=true
var_dump($_GET) 返回我:
array (size=2)
'pattern' => string 'pony' (length=4)
'content' => string 'mycontent' (length=8)
没有更多的价值..
如何检索其他参数?