Bonjour à tous.
Mon site Symfony2 fonctionne très bien sur mon ordinateur chez moi.
Pour le tester j'ai pris un mutualisé LWS.
Là les image ne s'affichent plus.
Voici le message htaccess du local
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
 
<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  RewriteEngine On
 
  # Adaptive-Images -----------------------------------------------------------------------------------
 
  # Add any directories you wish to omit from the Adaptive-Images process on a new line, as follows:
  # RewriteCond %{REQUEST_URI} !ignore-this-directory
  # RewriteCond %{REQUEST_URI} !and-ignore-this-directory-too
 
  RewriteCond %{REQUEST_URI} !assets
 
  # don't apply the AI behaviour to images inside AI's cache folder:
  RewriteCond %{REQUEST_URI} !ai-cache
 
  # Send any GIF, JPG, or PNG request that IS NOT stored inside one of the above directories
  # to adaptive-images.php so we can select appropriately sized versions
 
  RewriteRule \.(?:jpe?g|gif|png)$ adaptive-images.php
 
  # END Adaptive-Images -------------------------------------------------------------------------------
</IfModule>
Merci pour votre aide.

Mon bundle lalingerie ne possède de repertoir public dans le dossier web.
Comment faut il que je face pour afficher mes images sur un mutualisé.

Merci