You could use a relative path:
require 'subdirectory/filename.php';
You could use an absolute path:
require $_SERVER['DOCUMENT_ROOT'] . '/subdirectory/filename.php';
Alternatively, you could add the directory in question to your include_path setting, and then just include the file by its filename.