根据 URL 进行检测和重定向

发布于 2024-12-13 15:16:57 字数 399 浏览 0 评论 0原文

我的 .htaccess 文件中有以下条件:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^ex\.co$
RewriteRule ^(.*)$ http://example.com/?ref=$1 [L,R]

这会将 ex.co\xxxxxx 转发到 example.com\?ref=xxxxxx

我想要的是添加一行,如果用户只是访问 ex.co ,它会重定向到 example.com 而不是(如当前那样)example .com?ref=

有什么建议吗?

谢谢!

I have the following conditions in my .htaccess file:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^ex\.co$
RewriteRule ^(.*)$ http://example.com/?ref=$1 [L,R]

This will forward ex.co\xxxxxx to example.com\?ref=xxxxxx.

What I want is to add a line that if a user simply goes to ex.co it redirects to example.com and not (as it does currently) example.com?ref=

Any suggestions?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

趁年轻赶紧闹 2024-12-20 15:16:57

我认为你只需要添加下面的第三行:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^ex\.co$
RewriteRule ^$     http://example.com [L,R]
RewriteRule ^(.*)$ http://example.com/?ref=$1 [L,R]

I think you just need to add the third line below:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^ex\.co$
RewriteRule ^$     http://example.com [L,R]
RewriteRule ^(.*)$ http://example.com/?ref=$1 [L,R]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文