I would like to know how to put my entire django site behind HTTPS. If anyone tries to come via HTTP I want that user to be redirected to HTTPS.
I have a server with multiple domains. Both http (apache) traffic and http-alt (tomcat) traffic.
If/when I take the server down, I'd like to be able to redirect people to a temporary 'undergoing maintenance' page, regardless of their destination URL/port.
How can this be achieved?
Redirect has been working fine to when users connect to http://owa.company.com they get redirected to a log in page at https://owa.company.com/owa. It's just using the redirect setting in IIS. Then today I created a new ssl certificate and replaced the old one on this Exchange server.
I have 2 websites deployed in IIS 7.5 Express. The first website is the PRODUCTION website and the second is the TEST website. In the PRODUCTION website, I added an HTTPS binding and Require SSL so it is normal that it will force to redirect from HTTP to HTTPS.
I want redirect all traffic to example.com/* to be redirected to www.example.com/*
I found How can I redirect any ServerAlias to the respective ServerName?
I want to redirect https requests to http on an apache server.
I have updated my .htaccess file as described in this previous question:
Redirect HTTPS to HTTP
However, this doesn't work and gives (in Chrome):
Error 102 (net::ERR_CONNECTION_REFUSED): The server refused the connection.
I am guessing that the server isn't enabled to handle 443 requests.
I'm not sure if this is the appropriate place for this or not. Please move it if not. I am setting up a cPanel server and so far everything is working except that when you visit http://clientdomain.com/webmail you are redirected to https://clientdomain.com:2096 and receive an error message about the site being untrusted.
This is an Apache httpd 2.2 server.
We require that access to this webserver be encrypted by HTTPS.
When web clients visit my site at http://www.example.org/$foo (port 80), I want to redirect their request to the HTTPS encrypted website at https://www.example.org/$foo .
There seem to be two common ways to do this:
First method uses the 'Redirect' directive from mod_alias:
<VirtualHost *:80
hi,
i have freebsd gateway with ipfw as router. Recently i have setup squid-3.1.10 caching server for my lan.
I want to redirect http,https traffic from gateway to linux squid box.