Google app engine 100 URLMap entries limitation

前端 未结 2 1639
花落未央
花落未央 2021-01-26 03:08

I have been using google app engine to build my website, and met a problem about the maximum number of URLMap (I had 101 URLs, but the limit is 100). Here is the error message:<

2条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-26 03:40

    I had the same problem using Java SDK. I revolved removing index.html from welcome-file-list. Now my entrypoint is index.jsp with a redirect to my index.html page.

    In web.xml:

    
        index.jsp
    
    

    In appengine-web.xml:

    
        
        
        
        
        
        
        
        
        
        
    
    

提交回复
热议问题