htaccess 重写 url
我已经尝试使用 htaccess 将这个 url 重写一段时间了,
http://www.domain.com/folder/file.php?id=whatever
任何
http://www.domain.com/?id=whatever
帮助将不胜感激!
I've been tring for some time now with htaccess to rewrite this url
http://www.domain.com/folder/file.php?id=whatever
to
http://www.domain.com/?id=whatever
Any help would be much appreciated !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
必须类似于
查找确切的语法 urself ...还要注意 QSA 标志...实际上它将查询字符串从调用的 url 重定向到实际的 url ...而且您也无法匹配“?”之后的部分即正则表达式中的查询字符串...
Must be something like
look for the exact syntax urself ... also notice the QSA flag ... actually it redirects the query string from called url to actual url ... also you can not match the part after '?' ie the query string in the regex ...