我在 youtube 上注意到他们的 url 没有文件扩展名和查询字符串。我一直在尝试模仿类似的东西,但发现我必须包含文件扩展名或尾部斜杠。
members.php?agefrom=20&ageto=40&city=london (works)
members/?agefrom=20&ageto=40&city=london (works)
members?agefrom=20&ageto=40&city=london (doesnt work)
所以我只是想知道如何让第三个案例起作用?我在 htaccess 文件中尝试了一些东西。
RewriteRule ^members$ index.php?page=members&%{QUERY_STRING} [QSA,L]
我已经尝试了上述但无济于事。
任何帮助,将不胜感激。