AngularJS-css不会使用apache加载浏览器重新加载

时间:2015-07-18 10:04:30

标签: javascript html css angularjs apache

我正在使用html5路由使用angularjs构建项目。我正在使用apache服务它。我有一个问题:当我刷新页面时,index.html中指定的css文件不会加载。 我使用这个apache配置:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} !index
    RewriteRule (.*) index.html [L]
</IfModule>

我也将基础href设置为&#39; /&#39;

css示例:<link rel="stylesheet" type="text/css" href="/assets/styles.css">

我也从其他相关问题尝试了一些配置,解决方案没有成功。 所以我想知道是否有任何解决方案,或者是否有人遇到过这种问题。有什么建议吗?

0 个答案:

没有答案