This document presents a hybrid algorithm that combines Apriori Growth and FP-Split Tree algorithms for web usage mining. The algorithm has two phases: 1) It constructs an FP-Split Tree from web logs in a single pass, reducing complexity compared to FP-Tree which requires two passes. 2) It mines frequent patterns from the FP-Split Tree using an Apriori Growth approach instead of FP-Growth to avoid repeatedly recreating trees. The algorithm was tested on university website logs and showed better performance than traditional FP-Tree and Apriori methods, as it was faster at extracting frequent patterns for different support counts.