现在我们的nginx支持泛域名的响应,*.domain.com,我们对泛域名下的子站做了首页静态化:
比如:sc.domain.com
静态化的首页文件是sc_index.html
nginx能否配置实现请求sc.domain.com/index.html
的时候,响应抛出sc_index.html
大家讲道理2017-05-16 17:28:17
最近刚弄了下这个配置,直接加上下面配置即可:
location =/ {
rewrite (.*) /static_index.html last;
}