1

index.html 页面可以访问,但不是 spec_runner.html。我想访问两个不同的页面,一个用于应用程序,另一个用于测试。你可以帮帮我吗?谢谢,:)。我的配置如下

location ^~ /p/login      { rewrite .* /index.html last; }
location ^~ /specs        { index spec_runner.html; }

location ~* ^/(users|books) {
    proxy_pass http://api;                                                      
}                                                                             

location / {                                                                  
    root /home/user/project;                                    
    proxy_cache off;                                                            
    expires -1;
    add_header Cache-Control no-cache;                                         
    add_header Cache-Control private;                                          
}      
4

0 回答 0