У меня есть 2 URL-адреса, скажем, thinkingmonkey.me
и thinkingmonkey.com
оба имеют IP-адрес 127.0.0.1 (AKA localhost).
Я хочу перенаправить любые запросы на thinkingmonkey.com
на thinkingmonkey.me
.
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot /mysite
ServerName thinkingmonkey.me
ServerAlias www.thinkingmonkey.me
ErrorLog logs/dummy-host.example.com-error_log
CustomLog logs/dummy-host.example.com-access_log common
Options -Indexes +FollowSymLinks
RewriteEngine On
</VirtualHost>
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host.example.com
ServerName thinkingmonkey.com
Redirect thinkingmonkey.com http://thinkingmonkey.me/
# Redirect / http://thinkingmonkey.me/ #have even tried this
ServerAlias www.thinkingmonkey.com
RewriteEngine on
</VirtualHost>
Когда я пытаюсь получить доступ к thinkingmonkey.com
, URL не перенаправляется на thinkingmonkey.me
.URL в адресной строке браузера остается thinkingmonkey.com
.
Что я делаю не так?