Hi @key-key
As far as I know, there is no OOTB way on AEM Sites to search by name. There is an alternative to search such pages but the way is not very recommended for Content Authors and rather used by developers for Query. You can try this out anyway:
- Go to http://localhost:4502/libs/cq/search/content/querydebug.html
- Enter query data as below as click on search
path=/content/we-retail
type=cq:Page
nodename=*men*
p.limit=-1
3. You will get the liist of pages with page name containing men, click on html option available in seached list to open content page. If you need to search pages with exact name as men. Modify query as
path=/content/we-retail
type=cq:Page
nodename=men
p.limit=-1
This option is generally not available to authors with limitted rights.
Thanks,
Nupur