我想要像这样的所有查询
http://mysite.com/something/otherthing?foo=bar&x=y
重写为
http://mysite.com/something/otherthing.php?foo=bar&x=y
换句话说,只要让.php扩展成为可选的,通用的。
发布于 2008-10-08 17:37:28
就像..。
RewriteRule /something/(.+)?(.+) /something/$1.php?$2
或许能行得通。
https://stackoverflow.com/questions/183921
复制相似问题