Presently i am using PrefixQuery it's working fine but it get's a record like if my url is http://xyz.com then it will get http://xyz.com and http://xyz.com/service/... but it can't get http://www.xyz.com and http://xyz.co.in.i want to search based on any parts of url my code is :-
Term term = new Term("URL", siteUrl.toLowerCase());
Query query1 = new PrefixQuery(term);
booleanQuery.add(query1,BooleanClause.Occur.MUST);