我的网址是: https://domain.com/chapter-detail.php?board=12&class=145&subject=maths
现在,我想从网址中删除查询字符串,我希望将结果网址设为:https://domain.com/chapter-detail.php
答案 0 :(得分:1)
您可以使用以下规则从uri /chapter-detail.php中删除查询字符串
RewriteEngine on
RewriteCond %{QUERY_STRING} !^$
RewriteRule ^chapter-detail.php$ /chapter-detail.php? [L,R]
答案 1 :(得分:0)
您可以使用此
$url=strtok($_SERVER["REQUEST_URI"],'?');