I have an Apache server without certificates.
I need that when someone enters the website always redirects to the http version.
In the link file I have the following, but it is not working.
<VirtualHost *:80>
ServerName misitio.com
DocumentRoot "C:/Apache24/htdocs"
</VirtualHost>
<VirtualHost *:443>
ServerName www.misitio.com
ServerAlias misitio.com
Redirect permanent / http://www.misitio.com
</VirtualHost>
Is there anything I'm doing wrong?