我的网址目前看起来像这样
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文件中完成了,但是怎么做?
答案 0 :(得分:2)
在文档根目录中的htaccess中:
RewriteEngine on
RewriteRule ^charts/([^./]+)/?$ /charts?category=$1 [L]
将 / charts / foobar 重写为 / charts?category = foobar 。
如果要将其放在 /charts/.htaccess 中,请从重写模式中删除 charts / 。