我在 amazon linux2 上有一个 joomla 网站,使用 apache 和 php 7.4 作为示例.com我正在使用插件管理语言,例如我打开示例.com/cn它以中文打开,example.com/fr以法语打开。
如果我打开它就会起作用cn.example.com/cn和fr.example.com/fr但不如预期cn.example.com,fr.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>
任何其他方法都将受到赞赏