Forum Moderators: phranque
Root
¦--> Blog
¦--> Forum
Root, blog and forum have htaccess files with specific rules.
I would redirect the forum registration page to the blog registration.
I have tried some rules but I can't have the result I want. For example:
in the Forum htaccess:
Redirect 301 /index.php?action=register http://www.site.it/blog/index.php?option=com_registration&task=register [L] or, in the Root htaccess,
RewriteRule ^forum/index.php?action=register$ http://www.site.it/blog/index.php?option=com_registration&task=register [R=301,L] This rules have not effect.
Any idea?
Tnx,
Mario
In the Forum htaccess:
Options +FollowSymLinks
RewriteEngine on
#
RewriteCond %{QUERY_STRING} ^action=register$
RewriteRule ^index\.php$ http://www.example.it/blog/index.php?option=com_registration&task=register [R=301,L]