查询字符串中的友好URL

时间:2017-03-10 15:30:11

标签: .htaccess

我的网址目前看起来像这样

http://audioflare.io/charts?category=drum-bass

但我希望它们看起来像这样

http://audioflare.io/charts/drum-bass/

http://audioflare.io/charts/house/

http://audioflare.io/charts/deep-house/

我知道它在htaccess文件中完成了,但是怎么做?

1 个答案:

答案 0 :(得分:2)

在文档根目录中的htaccess中:

RewriteEngine on

RewriteRule ^charts/([^./]+)/?$ /charts?category=$1 [L]

/ charts / foobar 重写为 / charts?category = foobar

如果要将其放在 /charts/.htaccess 中,请从重写模式中删除 charts /