我目前是多应用绑定不同域名配置了nginx,但这时候是通过ng访问静态文件了,那么静态文件配置(static.php)就会没用,请问需要怎么设置才能使静态文件配置起作用?
不用nginx代理静态文件就好了,root路径改成其它目录
单独配置nginx处理静态文件: location ~ .*.(js|css|htm|html|gif|jpg|jpeg|png|bmp|swf|ioc|rar|zip|txt|flv|mid|doc|ppt|pdf|xls|mp3|wma)$ { root 路径; }
不用nginx代理静态文件就好了,root路径改成其它目录
单独配置nginx处理静态文件:
location ~ .*.(js|css|htm|html|gif|jpg|jpeg|png|bmp|swf|ioc|rar|zip|txt|flv|mid|doc|ppt|pdf|xls|mp3|wma)$ {
root 路径;
}