重定向所有推荐 ID 网址?

发布于 2024-10-22 17:15:45 字数 197 浏览 0 评论 0原文

为用户提供唯一的 URL,即:example.com/AQ4ILB9
AQ4ILB9 是推荐代码,

我仍然想从上述 URL(或任何推荐 URL)显示 index.php,但是将浏览器中的 URL 保留为推荐 url (example.com/AQ4ILB9)

我该如何执行此操作以及htaccess 是最好的方法吗?

谢谢!

Users are provided with unique URL's, ie: example.com/AQ4ILB9
AQ4ILB9 being the referral code

I would still like to display index.php from that URL as above (or any referral URL), however keep the URL in the browser as the referral url (example.com/AQ4ILB9)

How can I do this and is htaccess the best method?

Thanks!

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

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

发布评论

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

评论(1

青衫负雪 2024-10-29 17:15:45

将其放入 .htaccess 中:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !index.php
RewriteRule .* index.php?_url=$0 [QSA,L]

然后 $_GET['_url'] 将在 index.php 中保存 AQ4ILB9

我认为htaccess是最简单的方式,也是最可维护的方式。如果您必须更改服务器,则可以轻松移动,无需再次重新配置所有内容,并且如果需要,也可以轻松进行版本控制。

Put this in .htaccess:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !index.php
RewriteRule .* index.php?_url=$0 [QSA,L]

Then $_GET['_url'] will hold AQ4ILB9 in index.php.

I think htaccess is the easiest way and most maintainable way. Easy to move around without reconfiguring everything again if you have to change servers, and easy to version control if you need to.

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