Magento – Magento 2 css/js/urls not working after change domain name

admincssdomainjavascriptmagento-2.1.3

After changing domain name css js and links admin are not working in my site http://www.shopbrow.com/ i have change the base url and secure url and clean the cache folder after changing it but its not work
After that i have followed the following tutorial
Magento 2 CSS and JavaScript not loading from correct folder

its also not working for me can any one help me

Best Answer

Run following query in database

INSERT INTO `core_config_data` (`scope`, `scope_id`, `path`, `value`) VALUES ('default', 0, 'dev/static/sign', '0');

or if you have already value for that path, then change it from 1 to 0.

Then flush cache and deploy static content as follows.

php bin/magento cache:flush
php bin/magento setup:static-content:deploy
Related Topic