Magento – Magento2 doesn’t load images and css

404cssjavascriptmagento2

I have downloaded and installed Magento 2 but I'm getting 404 error for scripts and css. An example of my image path is: http://www.arredomobilionline.com/pub/static/frontend/Magento/luma/it_IT/images/logo.svg

I've already tried this solution:

Open up app/etc/di.xml and find the virtualType
name="developerMaterialization" section. In that section you'll find
an item name="view_preprocessed" that needs to be modified or deleted.
You can modify it by changing the contents from
Magento\Framework\App\View\Asset\MaterializationStrategy\Symlink to
Magento\Framework\App\View\Asset\MaterializationStrategy\Copy

inside my deafult di.xml file as default there's:

    <virtualType name="developerMaterialization" type="Magento\Framework\App\View\Asset\MaterializationStrategy\Factory">
    <arguments>
        <argument name="strategiesList" xsi:type="array">
            <item name="view_preprocessed" xsi:type="object">Magento\Framework\App\View\Asset\MaterializationStrategy\Symlink</item>
            <item name="default" xsi:type="object">Magento\Framework\App\View\Asset\MaterializationStrategy\Copy</item>
        </argument>
    </arguments>
</virtualType>

I tried to delete the first symlink part or change it into "copy" but it's not working.

Best Answer

I had the similar problem that css was not loading and admin give 404 so that Please check that mod_rewrite module is enable in server.