如何将我网站中的链接重定向到外部链接?

时间:2013-10-07 17:39:54

标签: joomla joomla3.0

我在我的andoird应用程序中提供了一个来自我的网站的链接:

  

www.mysite.com/support

我想将此链接重定向到:

  

www.anothersite.com

我已经尝试过com_redirect并输入support作为来源和http://ww.anothersite.com,但我没有得到任何重定向,我收到404错误。

我正在运行Joomla 3.x,我想知道如何通过URL重写和没有外部组件来实现这一点。

1 个答案:

答案 0 :(得分:2)

似乎不可能在Joomla后端内完成(我尝试了很多菜单项和重定向模块的组合)。 当然,您可以直接在.htaccess中编写重定向(如果您正在使用它),如下所示:

RewriteEngine On    # Turn on the rewriting engine
RewriteRule    ^support/?$    http://www.anothersite.com/    [R=301,NC,L]    # Permanent Move

RewriteEngine On    # Turn on the rewriting engine
RewriteRule    ^support/?$    http://www.anothersite.com    [R,NC,L]    # Temporary Move

有关网址重写和.htaccess的更多信息,请访问:http://www.addedbytes.com/articles/for-beginners/url-rewriting-for-beginners/