Hi Dave,
> I'm curious how does glue handle prefixes/subdomains. I.e. I'm
> working on a project, a fairly simple one and I'm wondering if glue
> can handle {this}.
domain.com.
Glue only looks at $_SERVER['REQUEST_URI'] which does not include any
host-specific information.
I have not tested this, but you might be able to get it to work if you
modify the glue.php file so that:
$path = $_SERVER['REQUEST_URI'];
is replaced with:
$path = $_SERVER['SERVER_NAME'] . '/' . $_SERVER['REQUEST_URI'];
and then create your $urls mapping to include the full domain.
Again, not tested, but it's a possibility.
Thanks,
Joe