Open GoogleCodeExporter opened 8 years ago
Ok...I find the problem.
mod_rewrite doesn't recognize spyd, so even I use https://xxxx/, it also thinks
I'm not using https, the %{HTTPS} is still off, this cause the redirect loop. I
changed the .htaccess file to this and fix this problem.
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{SERVER_PORT} ^80$ [NC]
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
Can you please fix this bug to let mod_rewrite recognize spyd directly? I don't
want add port in the rewrite rules. Because it's too dangerouse to multi ports
sites.
Original comment by wzxj...@gmail.com
on 15 Jun 2014 at 4:46
I have the exact same issue and used the above workaround using the port in the
rewrite rule for now.
Please fix this bug, so we don't need to use this workaround.
Thanks
Original comment by zoltan.f...@gravitalent.com
on 31 Jul 2014 at 2:40
I used the above workaround but it didn't resolve the issue. The website
doesn't even redirect.
Original comment by thiyada...@gmail.com
on 15 Oct 2014 at 2:28
Original issue reported on code.google.com by
wzxj...@gmail.com
on 15 Jun 2014 at 4:36