引用 URL 的服务器配置
我有一个名为 example.com
的域,它采用参数 ?ref=XXXXXX
。
引荐 URL 为 ex.co/XXXXXX
我的问题是,当用户访问 ex.co/AhJ7z1
或任何随机字符串时,我如何配置我的服务器进行转发到 example.com/?ref=AhJ7z1
。
这可以在 .htaccess
或 php.ini
或 PHP 之类的东西中完成吗?
编辑:
如果可能的话,我希望在 PHP 脚本中完成此操作,以便我可以保留某些 URL 并限制我想要的 URL 之外的 URL。
是否有一个 .htaccess
脚本我可以利用根目录中的 index.php
来执行此操作?
I have a domain called example.com
that takes a parameter ?ref=XXXXXX
.
The referral URLs are ex.co/XXXXXX
My question is, when a user goes to ex.co/AhJ7z1
or any random string, how do I configure my server to forward to example.com/?ref=AhJ7z1
.
Is that something that can be done in .htaccess
or php.ini
or something like PHP?
EDIT :
I'd like this to be done in a PHP script if possible so that I can reserve certain URLs and restrict URLs outside of what I want.
Is there an .htaccess
script I could utilize index.php
in root directory to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的 .htaccess 中,您可以执行以下操作:
编辑:重定向到 index.php
然后,您需要编写 index.php 脚本来获取“ref”参数并找到要重定向到的 URL。
In your .htaccess you can do something like this:
EDIT: to redirect to index.php
Then it's a matter of you writing your index.php script to grab the 'ref' parameter and find what URL to redirect to.