Re: [EMAIL PROTECTED] HTTPS requests redirect to HTTP

2008-08-31 Thread kohanm
I solved. I changed [R] to [R=301]. Thanks, MK On 8/31/08, Eric Covener <[EMAIL PROTECTED]> wrote: > On Sun, Aug 31, 2008 at 2:52 PM, kohanm <[EMAIL PROTECTED]> wrote: > > > RewriteRule ^/List/$http://mydomain/List/%1\.php?clue=%2 [R] > > > > It did not work. > > Can you explain and pro

Re: [EMAIL PROTECTED] HTTPS requests redirect to HTTP

2008-08-31 Thread Eric Covener
On Sun, Aug 31, 2008 at 2:52 PM, kohanm <[EMAIL PROTECTED]> wrote: > RewriteRule ^/List/$http://mydomain/List/%1\.php?clue=%2 [R] > > It did not work. Can you explain and provide a snippet of your RewriteLog? -- Eric Covener [EMAIL PROTECTED] ---

Re: [EMAIL PROTECTED] HTTPS requests redirect to HTTP

2008-08-31 Thread Jay Sprenkle
kohanm wrote: Hi, In the httpd-ssl.conf file I have this RewitreRule and it works fine for the HTTPS requests: RewriteEngine On RewriteCond %{QUERY_STRING}^(.*?)\.php&clue=([^&]+)$ RewriteRule ^/List/$ /List/%1\.php?clue=%2 [R] But I want that rule redirects to http. How can I write a ru

[EMAIL PROTECTED] HTTPS requests redirect to HTTP

2008-08-31 Thread kohanm
Hi, In the httpd-ssl.conf file I have this RewitreRule and it works fine for the HTTPS requests: RewriteEngine On RewriteCond %{QUERY_STRING}^(.*?)\.php&clue=([^&]+)$ RewriteRule ^/List/$ /List/%1\.php?clue=%2 [R] But I want that rule redirects to http. How can I write a rule that after ap