引用 URL 的服务器配置

发布于 2024-12-13 12:55:12 字数 481 浏览 0 评论 0原文

我有一个名为 example.com 的域,它采用参数 ?ref=XXXXXX

引荐 URL 为 ex.co/XXXXXX

我的问题是,当用户访问 ex.co/AhJ7z1 或任何随机字符串时,我如何配置我的服务器进行转发到 example.com/?ref=AhJ7z1

这可以在 .htaccessphp.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 技术交流群。

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

发布评论

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

评论(1

甜心小果奶 2024-12-20 12:55:12

在您的 .htaccess 中,您可以执行以下操作:

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

编辑:重定向到 index.php

RewriteEngine on    
RewriteCond %{HTTP_HOST} ^ex\.co$
RewriteRule ^(.*)$ /index.php?ref=$1 [L]

然后,您需要编写 index.php 脚本来获取“ref”参数并找到要重定向到的 URL。

In your .htaccess you can do something like this:

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

EDIT: to redirect to index.php

RewriteEngine on    
RewriteCond %{HTTP_HOST} ^ex\.co$
RewriteRule ^(.*)$ /index.php?ref=$1 [L]

Then it's a matter of you writing your index.php script to grab the 'ref' parameter and find what URL to redirect to.

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