Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
现在我的标题可能有点混乱,因为我真的不知道如何用几句话来描述问题或问题。
因此,例如,现在我的会员页面 URL 如下所示:www.example.com/member.php?username=MyUsername 我已经看到了类似这样的网页:www.example.com/MyUsername喜欢用 .htaccess 或 PHP 删除 "member.php?username=" 位?还是你用另一种方式来做?
提前致谢!
简单的
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)$ /?username=$1 [L]