我的.htaccess文件包含以下代码:
RewriteRule ^([a-zA-Z0-9_-]+)$ profile.php?username=$1
RewriteRule ^([a-zA-Z0-9_-]+)/$ profile.php?username=$1
更改此网址
http://localhost/profile.php?username=srinivas
到
http://localhost/srinivas
我想知道如何在php
中使用$ _GET ['用户名']获取用户名答案 0 :(得分:2)
$url = explode('/',$_SERVER['REQUEST_URI']);
foreach ($url as $val){
$args[] = urldecode($val);
}
// $args[0] => srinivas