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]