Hi guys
Ive been working on a problem since today morning and havent been able to figure out an answer yet to this question. Basically there is a URL
www.example.com/index.php?option=com_seyret that needs to be redirected to
www.example.com/index.php?page=Media
I tried with whatever the Apache redirects I know but it simply doesnt seem to work. Below is what I have
Anyone any idea why this is? Im sure this is a very simple problem in the syntax.
Ive been working on a problem since today morning and havent been able to figure out an answer yet to this question. Basically there is a URL
www.example.com/index.php?option=com_seyret that needs to be redirected to
www.example.com/index.php?page=Media
I tried with whatever the Apache redirects I know but it simply doesnt seem to work. Below is what I have
Code:
RewriteCond %{query_string} option=com_seyret
RewriteRule /index\.php$ http://www.example.com/index.php?page=Media
Anyone any idea why this is? Im sure this is a very simple problem in the syntax.