我已经将htaccess重写了这样的网址:
RewriteCond $1 !-f
RewriteCond $1 !-d
RewriteCond $1 !^(index\.php)
RewriteRule ^(.*)$ index.php?page=$1 [L]
e.g。 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 参数?