Frank Lanitz wrote:
Hi,
On Fri, 24 Oct 2008 20:21:18 +0200
"Andrea Ganduglia" <[EMAIL PROTECTED]> wrote:
Hi, how can I redirect HTTPS requests to HTTP?
https://www.domain.com => http://www.domain.com
I'm afraid I don't have a valid solution for your question, but I've
got a question
Hi,
On Fri, 24 Oct 2008 20:21:18 +0200
"Andrea Ganduglia" <[EMAIL PROTECTED]> wrote:
> Hi, how can I redirect HTTPS requests to HTTP?
>
> https://www.domain.com => http://www.domain.com
I'm afraid I don't have a valid solution for your question, but I've
got a question: Why is something like t
PREROUTING -i eth0 -p tcp --dport 443 -j REDIRECT
> --to-port 80
>
> allow client connections, but drop request.
>
> How Can I solve this?
>
If you're using Apache, you can use mod_rewrite to rewrite https to http
requests. I'm doing the exact opposite using this rule:
Hi, how can I redirect HTTPS requests to HTTP?
https://www.domain.com => http://www.domain.com
A simple iptables port redirection
iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 443 -j REDIRECT
--to-port 80
allow client connections, but drop request.
How Can I solve this?
--
Openclose.i
4 matches
Mail list logo