根据 URL 进行检测和重定向
我的 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你只需要添加下面的第三行:
I think you just need to add the third line below: