解决Apache配置location导致的404问题

问题描述:

apache里配置了两个location

 
        WebLogicCluster ip:port
        SetHandler weblogic-handler
        PathTrim /
       


        WebLogicCluster ip:port
        SetHandler weblogic-handler
        PathTrim /
       

访问/portalweb/en/test.html时报404错误。

解决方法:


        WebLogicCluster ip:port
        SetHandler weblogic-handler
        PathTrim /
       

改成


        WebLogicCluster ip:port
        SetHandler weblogic-handler
        PathTrim /
       

就可以了。

^/en表示以/en开始的,如果不加^,只要url里有/en,apache就给拦截了。


你可能感兴趣的:(技术文章)