如何从url中删除查询字符串变量

时间:2018-05-26 09:03:19

标签: php .htaccess

如何从htaccess中删除查询字符串变量名?我有以下结构。

http://localhost/newsite/category?id=News
http://localhost/newsite/category?id=Entertainment
http://localhost/newsite/category?id=Technology

我想改变

http://localhost/newsite/News/
http://localhost/newsite/Entertainment/
http://localhost/newsite/Technology/
像这样。我尝试在htaccess中重写,但没有工作

2 个答案:

答案 0 :(得分:0)

试试这个

RewriteEngine on 
RewriteRule ^([a-zA-Z]+)/$ category.php?id=$1

答案 1 :(得分:0)

试试这个。

RewriteRule ^newsite/([^./]+)/?$ newsite/category?id=$1 [NC,L]