更改Joomla登录页面的重定向URL

时间:2012-10-10 13:45:23

标签: login joomla

我正在使用joomla登录页面,但需要更改登录的操作页面,其当前为form action="<?php echo JRoute::_('index.php', true, $this->params->get('usesecure')); ?>" onsubmit="return validate()" method="post" name="com-login" id="com-form-login">

需要更改为

form action="<?php echo JRoute::_('index.php?option=com_contushdvideoshare&view=myvideos', true, $this->params->get('usesecure')); ?>" onsubmit="return validate()" method="post" name="com-login" id="com-form-login">

可能的?有任何帮助来解决它吗?

3 个答案:

答案 0 :(得分:5)

你不能通过登录模块吗?

只需为要转到的网址创建一个菜单项,然后在登录模块参数的“登录重定向页面”下拉列表中选择它。

enter image description here

答案 1 :(得分:1)

我自己也有这个问题,就像我可以将登录模块配置为在成功登录后重定向到特定页面,但com_user登录视图仍然重定向到joomla用户配置文件页面。 This plugin seems to do the trick.

答案 2 :(得分:0)

登录模块的重定向是通过模块管理器完成的。

因此,在Joomla后端,转到“模块管理器”,然后打开“登录”模块,您将在右侧看到它的参数。