Я пытаюсь перенаправить домен-а на домен-б. Поэтому, когда пользователь вводит домен-a, он переходит в домен-b. Я попытался использовать файл HTACCESS, и мне не повезло. Вот что я поместил в файл конфигурации сервера.
<VirtualHost *:80>
ServerAdmin support@domain-b.com
ServerName domain-a.com
ServerAlias www.domain-a.com
DocumentRoot /var/www/domain-a.com/public_html
<Directory /var/www/html/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<IfModule mod_dir.c>
DirectoryIndex index.php index.pl index.cgi index.html index.xhtml index.htm
</IfModule>
# Testing the rewrite
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain-a\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.domain-a\.com$
RewriteRule ^/?$ "http\:\/\/domain-b.com\.com\/" [R=301,L]
</VirtualHost>