Franz Hey Franz, thanks for your reply. My config.php file was originally:
<?php return array (
'debug' => true,
'database' =>
array (
'driver' => 'mysql',
'host' => '[hostname]',
'database' => '[dbname]',
'username' => '[dbun]',
'password' => '[dbpw]',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'prefix' => 'forum_',
'strict' => false,
),
'url' => 'http://forum.mydomain.com/flarum',
'paths' =>
array (
'api' => 'api',
'admin' => 'admin',
),
);
When I change the url to 'url' => 'http://forum.mydomain.com'
, the forum.mydomain.com/flarum 404s, but there is nothing at forum.mydomain.com.
I'm trying to keep the forum at forum.mydomain.com/flarum, but have users able to access it by visiting forum.mydomain.com.
Let me know if the above is unclear. Thanks again!