I want to query DBpedia for multiple keywords, apparently I have to search for an exact substring, so if I want the page about Egyptian Pyramids, searching for
Egyptian Pyramids
Trying to construct a SPARQL query like the following might be useful:
SELECT ?uri ?txt WHERE { ?uri rdfs:label ?txt . ?txt bif:contains "'Egypt' OR 'Pyramid'" . }
Or do you want something different?