Hi, how i can rewrite the page http://www.mysite.com/index.php?option=com_chronocontact& ;chronoformname=form1 to https://www.mysite.com/index.php?option=com_chronocontact&am p;chronoformname=form1 or to http://www.mysite.com/form/ (this address work with SSL automatically Thanks, Nservices.
Research the .htaccess file, you'll come to love it. http://joseph.randomnetworks.com/archives/2004/07/22/redirect-to-ssl-using-apaches-htaccess/
when i try redirect index.php to mysite.com/form its work RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^index.php$ https://www.mysite.com/form/ PHP: but i need one page of index.php Just (index.php?option=com_chronocontact&chronoformname=form) and i try to do RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^index.php?option=com_chronocontact&chronoformname=form$ https://www.mysite.com/form/ PHP: and this is not work.
redirect work well for index.php in redirect 301 /index.php http://www.mysite.com/form/ but not work in: in redirect 301 index.php?option=com_chronocontact&chronoformname=order http://www.mysite.com/form/ any idea ?