Question
Domain B (http) is redirected to domain A (Https)
Hello I had a domain (domain A) running with let’s encrypt and correctly redirected from http to https, today I set up a new virtual host with another domain (domain B) with let’s encrypt too, but when I enter domain b with http (http: //domainb.com or http://www.dominiob.com) I am redirected to domain A with https, but I need that instead of being redirected to domain A go to domain B in https
I believe that de configuration is ok, but I don’t why don’t repect the redirection for domain B, these are the configurations:
Domain A.conf:
<VirtualHost *:80>
ServerAdmin xxxxx@gmail.com
ServerName domaina.com
ServerAlias www.domaina.com
DocumentRoot /var/www/domaina.com/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
RewriteEngine on
RewriteCond %{SERVER_NAME} =domaina.com [OR]
RewriteCond %{SERVER_NAME} =www.domaina.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
<Directory /var/www/domaina.com/>
AllowOverride All
</Directory>
</VirtualHost>
Domain A-le-ssl.conf:
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerAdmin xxxxx@gmail.com
ServerName domaina.com
ServerAlias www.domaina.com
DocumentRoot /var/www/domain.com/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/domaina.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/domaina.com/privkey.pem
</VirtualHost>
</IfModule>
Domain B.conf:
<VirtualHost *:80>
ServerAdmin info@XXXX.com
ServerName domainb.com
ServerAlias www.domainb.com
DocumentRoot /var/www/domainb.com/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
RewriteEngine on
RewriteCond %{SERVER_NAME} =domainb.com [OR]
RewriteCond %{SERVER_NAME} =www.domainb.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
<Directory /var/www/domainb.com/>
AllowOverride All
</Directory>
</VirtualHost>
Domain B-le-ssl.conf:
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerAdmin info@xxxxx.com
ServerName domainb.com
ServerAlias www.domainb.com
DocumentRoot /var/www/domainb.com/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/domainb.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/domain.com/privkey.pem
</VirtualHost>
</IfModule>
NOTE: When I use https://www.domainb.com or https://domainb.com the server load the right web, the problem is only with http://domain.com or http://www.domain.com.
Have someone ideas?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×
@palma2039 Apologies but I’m a bit confused by your issue?
Is the issue that you want http://domaina.com to redirect to https://domainb.com, or that the issue is that occurring currently?
Hi @MattIPv4 I want that I Access to http://domainB.com the server redirect the petition to httpS://domainB.com in other words I want:
sorry for the confusión.
Regards
Thanks I reset the certs and I reboot de server and the problem was solved