我配置了一个 Apache Web 服务器和 Tomcat。我有一个静态文件夹,包含在 Tomcat webapps 文件夹中。静态文件夹中的 css 文件会更改我的网页登录屏幕颜色。
当我尝试使用 localhost 访问时,我的登录屏幕颜色按预期发生变化。但当我尝试使用我在 Apache Web Server 中声明的域进行连接时,它不会改变,并返回以下错误;
https://test.webpage.com/static/login.css net::ERR_ABORTED 400
这是我的httpd.vhost.conf
<VirtualHost *:443>
ServerName test.webpage.com
ServerAlias www.test.webpage.com
ErrorLog "logs/test-error.log"
CustomLog "logs/test-access.log" common
<Directory "C:/Test/test2/AppServer/webapps/static/">
Options +Indexes
AllowOverride None
Require all granted
</Directory>
JkMount /static/* prod
JkMount /static prod
</VirtualHost>
我在这里遗漏了什么?
谢谢。