mod_rewrite 具有多个变量
我有一个像这样的 URL:
http://localhost/deals/?search=fred
重定向到 index.cfm?path=
当我使用 mod 重写 URL 参数时变为
path = /deals/?search=fred
我当前有 RewriteRule /(.*) /index.cfm?path=/$1 [L]
如何拆分它以便我可以实际使用 URL 变量“搜索”?
我正在使用 IIRF 重写。
I have a URL like so:
http://localhost/deals/?search=fred
that redirects to index.cfm?path=
When I use mod rewrite the URL parameter becomes
path = /deals/?search=fred
I currently have RewriteRule /(.*) /index.cfm?path=/$1 [L]
How can I split it so I can actually use the URL variable "search"?
I am using IIRF rewrite.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这解决了我的问题。
谢谢
This fixed my problem.
thanks
但是,如果您只想继续使用您使用的内容,那么您可以简单地使用
OR 它应该单独存在于 get 变量中,您可以通过类似的方式访问它
However if you just wanna continue with what you use then you can simply use
OR it should be there by itself in the get variables and u can access it by something like