反向代理 example.com/cn 到 cn.example.com

反向代理 example.com/cn 到 cn.example.com

我在 amazon linux2 上有一个 joomla 网站,使用 apache 和 php 7.4 作为示例.com我正在使用插件管理语言,例如我打开示例.com/cn它以中文打开,example.com/fr以法语打开。

如果我打开它就会起作用cn.example.com/cnfr.example.com/fr但不如预期cn.example.comfr.example.com

这是我的 apache vhost 配置文件

<VirtualHost *:80>
    ServerName cn.example.com
    DocumentRoot /var/www/html/example.com
    ErrorLog "logs/cn.example.com-error_log"
    CustomLog "logs/cn.example.com-access_log" common
     ProxyRequests Off
           <Proxy *>
     Order deny,allow
           Allow from all
     </Proxy>
         ProxyPass /  http://cn.example.com/cn/
</VirtualHost> 

任何其他方法都将受到赞赏

相关内容