如何使用 htaccess 只替换 url 的一部分?

发布于 2024-12-12 00:52:48 字数 429 浏览 0 评论 0原文

我需要将生成的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月染过的梦 2024-12-19 00:52:48

假设您的意思是最终用户将在浏览器中输入 /component/uddeim/?...,请使用:

RewriteEngine On
RewriteRule ^component/uddeim/? http://example.com/community/messages [L,QSA,R=301]

QSA 标志指示应附加原始查询字符串到新的 URL,将其保留在任何可能存在的位置。

Assuming you mean that your end users will enter /component/uddeim/?... into their browsers, use:

RewriteEngine On
RewriteRule ^component/uddeim/? http://example.com/community/messages [L,QSA,R=301]

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文