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