##前置GET参数
前置GET参数是可以把GET参数放在URL的最前面,在程序中可以通过$_GET获取
配置方法是在“phpstart/__config/vhosts.ini.php”
**例子1**
~~~
return array(
//程序目录绑定
//支持正则匹配
array(
'host'=>'127.0.0.1',
'path' =>'test',
'gets' => array(
'username'=>'admin'
)
),
array(
'domain'=>'localhost',
'path' =>'test2'
),
array(
'domain'=>'/.*\.com$/',
'path' =>'test3'
)
);
~~~
* * * * *
http://127.0.0.1/fafa/home/index
>引用文件:、/test/home.php
实例化: new home()->index();
在程序中可以通过 $_GET['username'] 获取变量值 fafa