after installing on namecheap, per the direction, it installs in flarum, then points to public folder.
I can't seem to access it under root. Currently the forum can be access website.com/flarum/public but it should be website.com and shows the default flarum public page. After many tries, I seem to cannot get it working.
so far, in public_html -> .htaccess
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule .* https://eightfolds.net$%{REQUEST_URI} [R,L]
RewriteCond %{HTTP_HOST} ^(www.)?eightfolds.net$
RewriteCond %{REQUEST_URI} !^/flarum/public/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /flarum/public/$1
RewriteCond %{HTTP_HOST} ^(www.)?eightfolds.net$
RewriteRule ^(/)?$ flarum/public/ [L]