我已经像这样重写了 htaccess 的 url:
RewriteCond $1 !-f
RewriteCond $1 !-d
RewriteCond $1 !^(index\.php)
RewriteRule ^(.*)$ index.php?page=$1 [L]
例如 url:http ://www.smth.com/en/page/subpage/在 PHP 脚本中我可以简单地调用 $_GET['page'] 来获取这些参数。
但如果我的网址看起来像: http ://www.smth.com/en/page/subpage/?data=one&result=two
如何在 PHP 中获取这些data=one&result=two参数?