要获取URL参数,你可以使用PHP中的$_GET
或$_REQUEST
全局变量。例如,如果你的URL是http://example.com/index.php?page=about
,你可以使用以下代码来获取page
参数的值:
$page = $_GET['page'];
echo $page; // 输出为 "about"
如果你想重写URL并隐藏参数,你可以使用.htaccess
文件来实现。例如,你可以将http://example.com/index.php?page=about
转换为http://example.com/about
。在.htaccess
文件中添加以下代码:
RewriteEngine On
RewriteRule ^([^/]*)$ /index.php?page=$1 [L]
这将把http://example.com/about
重写为http://example.com/index.php?page=about
。然后你可以使用上面的PHP代码来获取参数的值。