Can I design a custom page using a page module plugin (with some PHP scripts, rather than just pure HTML tags) and then set it as homepage using the config file?
For example:
A custom PHP page like honolulu.php, with a request name 'honolulu'. And then, in qa-config.php file, I set up like this:
$QA_CONST_PATH_MAP = array(
'honolulu' => '',
'user' => 'u',
);
Can that be feasible?