RewriteRule,为参数提供路径
抱歉,如果这是一个常见问题,我需要一个具体的答案:
我想将
/foo/foo0.php?img=foo1/foo2/foo3/bar.jpg
以下网址重写为:
/foo/foo1/foo2/foo3/bar.jpg
sorry If it's a common question, I need a specific answer :
I want to rewrite a url like :
/foo/foo0.php?img=foo1/foo2/foo3/bar.jpg
into this :
/foo/foo1/foo2/foo3/bar.jpg
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
会这样做
编辑
从您添加的代码来看,您实际上想这样做:
Will do it
EDIT
Judging from the code you've added you actually want to do it like this:
根据评论,我认为并不真正需要多个部分。这应该足够了:
这将允许您使用任意数量的
foo
段。Based on the comments, I don't think the multiple segments are really needed. This should be enough:
This will allow you to use any number of
foo
segments.