我正在尝试在我的 .htaccess 文件中添加一些内容,以允许我更改以下 URL:
http://www.mysite.com/profile?user=theuser
类似于:
http://www.mysite.com/profile/theuser
但在页面中,仍然可以执行以下操作:
echo $_GET['user']; // echos "theuser"
这可能吗?我该怎么做?
注意:我正在尝试获取地址栏中的 URL 以显示http://www.mysite.com/profile/theuser