I have published my site and I have this inside .htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ web/app_dev.php [QSA,L]
</IfModule>
and when I go to www.mysite.com(example) it doesn't load css, javascript, images. My files are in "web" folder and I use this code for load them - {{ asset....
Why it does not work?
PS: I can't modify httpd.conf on the server because I use shared hosting.
Help please.