Apache VirtualHost - 域名

Apache VirtualHost - domain name

我买了一个域名,一个是“.fr”,一个是“.com”

现在我想将我的域名重定向到在端口 4000 上运行的服务器。

为此我使用了虚拟主机:

<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>

当我访问“.com”时它工作正常但不适用于“.fr”。

有什么想法吗?谢谢

将 ServerName 和 ServerAlias 更改为:

ServerName example.fr
ServerAlias www.example.fr example.com www.example.com