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