来源:http://bbs.x.weibo.com/viewthread.php?tid=2486
修改代码很简单
修改根目录的 index.php
查找:account.gloCheckLogin
你会看到后面的代码
APP::addPreDoAction('account.gloCheckLogin', 'm', false, array('feedback.*','custom.*','welcome.retry', 'pipe.t','authImage.paint', 'search.recommend', 'account.*', 'pub', 'pub.*', 'api/*', 'output.*','setting.getSkin'));
如果你想让游客访问某个页面的话,把ID添加进去
比如我们想让游客访问的话,那么我们就在 'custom.*', 后边添加 'ta.*',
'live.*',
'event.*', 活动 游客访问
'interview.*', 访谈 游客访问
顺序添加即可!
APP::addPreDoAction('account.gloCheckLogin', 'm', false, array('feedback.*','custom.*','radio.*','live.*','celeb.*','event.*','ta.*','interview.*','welcome.retry', 'pipe.t','authImage.paint', 'search.recommend', 'account.*', 'pub', 'pub.*', 'api/*', 'output.*','setting.getSkin'));