我为 Opencart 制作了一个自定义注册模块,
我的注册页面有以下网址:
www.mysite.com/index.php?route=account/customregister
而默认的注册页面 url 是:
www.mysite.com/index.php?route=account/register
当用户单击指向默认注册模块 (route=account/register) 的任何链接时,我想将用户重定向到我的注册页面 (route=account/customregister)。我知道我可以编辑 .htaccess 文件以进行重定向或 url 重写,但我想通过 php 来做到这一点。有人知道我是否可以在我的扩展程序上放置一些类/函数或某种代码来自动将用户重定向到新的 url?
提前谢谢大家
Ps 我无法修改核心文件,也不会编辑 .htaccess。