Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望访问者(未注册用户)被重定向到特定页面,例如我的 phpfox 站点的博客或页面(即他们能够看到与所有人共享的内容)。
目前,当访问者访问我的 phpfox 站点时,例如www.mysite.com,用户会看到登录/注册表单,我想取消这些表单。我希望访问者被重定向到,比如说,http://mysite.com/index.php?do=/pages/ 或 http://mysite.com/index.php?do=/
www.mysite.com
http://mysite.com/index.php?do=/pages/
http://mysite.com/index.php?do=/
我应该查看哪些特定文件?
为了将访问者导航到其他页面,您可以使用 phpfox 的默认功能来重定向页面,使用 URL lib ( Phpfox::getLib('url')->send('pin');) 的发送功能。
Phpfox::getLib('url')->send('pin');
在上面的代码中,我编写了将页面导航到 pin 模块的代码,您可以使用代码将页面重定向到特定目的地。
使用 index-visitor.class 文件 'module\core\include\component\controller\index-visitor.class' 的处理函数顶行的代码