使用.htaccess从PHP URL中删除查询字符串

时间:2017-01-17 06:43:53

标签: php .htaccess url query-string

我的网址是: https://domain.com/chapter-detail.php?board=12&class=145&subject=maths

现在,我想从网址中删除查询字符串,我希望将结果网址设为:https://domain.com/chapter-detail.php

2 个答案:

答案 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"],'?');