EN
apache VirtualHost - redirect subdomain to domain
1
answers
2
points
Is it possible to redirect subdomain to domain using apache server and VirtualHosts?
I have subdomain I don't want to use anymore, but I would like to redirect all visitors to main domain.
1 answer
2
points
Quick solution:
<VirtualHost *:80>
ServerName subdomain.domain.com
RedirectPermanent / https://domain.com/
</VirtualHost>
Example configuration is in file:
vim /etc/apache2/apache2.conf
It can be different on your OS.
After we modify apache2.conf, we need to restart service. We can do it with this command:
sudo service apache2 restart
0 comments
Add comment