为tomcat安装nginx反向代理,发现不能加载css及js等文件。

nginx不加载css、js_第1张图片

在nginx配置文件里面添加以下内容可解决问题;

 

   
   
   
   
  1. location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js|css)$ 
  2.  
  3.  
  4. root /tomcat/ROOT/; 
  5.  
  6. if (-f $request_filename) { 
  7.  
  8. expires 1d; 
  9.  
  10. break; 
  11.  
  12.  

刷新页面后:

nginx不加载css、js_第2张图片