There are many questions about redirecting HTTP to HTTPS like this:
<VirtualHost *:80>
ServerName www.example.com
Redirect / https://www.example.com/
</VirtualHost>
<VirtualHost *:443>
ServerName www.example.com
# ... SSL configuration goes here
</VirtualHost>
but I need to do the other way around, from HTTPS to HTTP, possibly by not using mod_rewrite. Is that possible?
Apache Version: Server version: Apache/2.4.7 (Ubuntu)
I tried this but it doesn't work:
<VirtualHost _default_:443>
ServerName example.com
ServerAlias *.example.com
Redirect "/" "http://example.com/"
</VirtualHost>