I am using this htaccess
#Search
RewriteEngine on
RewriteRule ^custompage/(.*?)\.html$ custompage/custom?test=$1 [L,QSA]
And my init.php
OW::getRouter()->addRoute(new OW_Route('custompage.index', '/custompage', "CUSTOMPAGE_CTRL_Custom", 'index'));
But when I try this URL it says not found:
http://localhost/site/custompage/custom/seo.html
What it's not rewriting the URL????