通过.htaccess重定向Joomla核心页面

时间:2014-01-21 22:27:00

标签: .htaccess redirect joomla

我无法通过.htaccess重定向Joomla的核心页面;例如,我需要

/component/users/?view=login

重定向到另一个页面,但服务器似乎完全忽略了重定向。这里有什么我想念的吗?目前,我正在尝试使用:

Redirect /component/users/?view=login http://www.example.com/

1 个答案:

答案 0 :(得分:1)

您无法与Redirect中的查询字符串匹配,您需要使用%{QUERY_STRING}变量和mod_rewrite。在文档根目录中的htaccess文件中可能已有的任何其他规则之上,添加:

RewriteEngine On
RewriteCond %{QUERY_STRING} (^|&)view=login(&|$)
RewriteRule ^component/users/$ http://www.example.com/? [L,R]