Completed installation and show error JQMIGRATE: Migrate is installed, version 3.3.2 net::ERR_ABORTED 404 (Not Found)

I found the solution at here we change the config in .htaccess .
----------------------------------------------------------------------new config
RewriteEngine On
RewriteBase /Tsystem/public/legacy/
RewriteRule /cache/jsLanguage/(……).js$ index.php?entryPoint=jslang&modulename=app_s$
RewriteRule /cache/jsLanguage/(\w*)/(…
…).js$ index.php?entryPoint=jslang&modulename$
----------------------------------------------------------------------old config
RewriteEngine On
RewriteBase /Tsystem/publiclegacy/
RewriteRule ^cache/jsLanguage/(……).js$ index.php?entryPoint=jslang&modulename=app_strings&lang=$1 [L,QSA]
RewriteRule ^cache/jsLanguage/(\w*)/(…
…).js$ index.php?entryPoint=jslang&modulename=$1&lang=$2 [L,QSA]