我刚完成从AWS在unbuntu服务器上安装angular 2的操作。我的问题是,当我在浏览器example.com中进入服务器时,我得到了Ubuntu index.html页,而当我得到了我的有角度的2项目example.com/myapp/dist/browser/时,由于CSS而出现了404错误和js文件,因为它试图从根example.com/assets/css/style.css
获取它们我的问题是如何使example.com成为我的angular 2项目?
这是我来自laravel.conf的VirtualHost
<VirtualHost *:80>
ServerName http://example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
<Directory /var/www/html/myapp/dist/dist/browser>
AllowOverride All
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>