重定向所有推荐 ID 网址?
为用户提供唯一的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其放入
.htaccess
中:然后
$_GET['_url']
将在index.php
中保存AQ4ILB9
。我认为htaccess是最简单的方式,也是最可维护的方式。如果您必须更改服务器,则可以轻松移动,无需再次重新配置所有内容,并且如果需要,也可以轻松进行版本控制。
Put this in
.htaccess
:Then
$_GET['_url']
will holdAQ4ILB9
inindex.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.