示例:mywebsite.com/$entry
我想使用$entry
作为查询,搜索我的数据库并查看行" usernames"。如果它与用户名匹配,则将信息加载到索引页面,信息类似于$username
。
我不知道如何解决这个问题,非常感谢任何帮助,如果您需要更多说明,请询问。
答案 0 :(得分:1)
将此代码放入DOCUMENT_ROOT/.htaccess
文件中:
RewriteEngine On
RewriteBase /uppit/
RewriteRule ^(.+)$ index.php?query=$1 [L,QSA]
<强>的index.php 强>
$query = $_GET["query"];
select * from table where name = '$query'
我希望这会对你有所帮助