我买了一个域名,一个用" .fr"另一个用" .com"
现在我想将我的域名重定向到端口4000上运行的服务器。
为此,我使用了virualhost:
<VirtualHost *:80>
ServerName http://www.example.fr
ServerAlias example.fr
ProxyRequests Off
ProxyVia On
ProxyPass / http://localhost:4000/
ProxyPassReverse / http://localhost:4000/
ErrorLog logs/error_log
CustomLog logs/access_log common
</VirtualHost>
当我访问&#34; .com&#34;但是并没有使用&#34; .fr&#34;。
有什么想法吗? THX
答案 0 :(得分:0)
将ServerName和ServerAlias更改为:
ServerName example.fr
ServerAlias www.example.fr example.com www.example.com