如何使用 htaccess 只替换 url 的一部分?
我需要将生成的 joomla url 修改为另一个,htaccess 似乎是一个很好的方法。只是我对它不太熟悉:/
我需要把这个url:
http://www.site.com/component/uddeim/?task=new&recip=190&nouserlist=141
重写成这个url:
http://www.site.com/community/messages?task=new&recip=190&nouserlist=141
?task=new&recip=190&nouserlist=141
<<数值是动态的,这意味着它们会改变,
任何人都可以帮忙吗?谢谢...
I need to modify a generated joomla url to another and htaccess seems like a nice way to do this. It's just that I'm not too familiar with it :/
I need to make this url:
http://www.site.com/component/uddeim/?task=new&recip=190&nouserlist=141
Rewritten into this url:
http://www.site.com/community/messages?task=new&recip=190&nouserlist=141
?task=new&recip=190&nouserlist=141
<< the number values are dynamic, meaning they change
anyone can help? Thank you...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您的意思是最终用户将在浏览器中输入
/component/uddeim/?...
,请使用:QSA
标志指示应附加原始查询字符串到新的 URL,将其保留在任何可能存在的位置。Assuming you mean that your end users will enter
/component/uddeim/?...
into their browsers, use:The
QSA
flag indicates that the original query string should be appended to the new URL, preserving it in whatever for it may be in.