when installing flarum , it occurs that :Something went wrong while trying to load the full version of this site.
and the error prints as this :
GET http://74.207.243.207/assets/forum-256bebed.js
(index):10 GET http://74.207.243.207/assets/forum-c7b74763.css
(index):82 GET http://74.207.243.207/assets/forum-en-df77f08d.js
(index):81 GET http://74.207.243.207/assets/forum-256bebed.js
(index):82 GET http://74.207.243.207/assets/forum-en-df77f08d.js 404 (Not Found)
(index):86 Uncaught ReferenceError: System is not defined
and I doubt there maybe the misconfiguration in the .htaccess file,
I just upload the default .htaccess and the only contend altered by me as below :
RewriteRule vendor/(.)?$ / [F,L]
RewriteRule storage/(.)?$ / [F,L]
RewriteRule config.php$ / [F,L]
RewriteRule .git/(.)?$ / [F,L]
RewriteRule assets/(.)?$ /
RewriteRule api(.)$ api.php [QSA,L]
RewriteRule admin(.)$ admin.php [QSA,L]
RewriteCond %{REQUEST_URI} !/flarum/
RewriteRule (/)?$ flarum/index.php/$1 [L]
MultiViews can mess up our rewriting scheme
Options -MultiViews
my structure of directory is
/var/www/html/.htaccess
/var/www/html/flarum
is there anyone who can help me the point the mistakes?