Ciao a tutti, io ho sul mio sito il seguente .htaccess:

Codice PHP:
<IfModule mod_rewrite.c>
  
Options +FollowSymLinks
  RewriteEngine On

  
# Get rid of index.php
  
RewriteCond %{REQUEST_URI} /index\.php
  RewriteRule 
(.*) index.php?rewrite=[L,QSA]

  
# Rewrite all directory-looking urls
  
RewriteCond %{REQUEST_URI} /$
  
RewriteRule (.*) index.php?rewrite=[L,QSA]

  
# Try to route missing files
  
RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond 
%{REQUEST_FILENAME} public\/ [OR]
  
RewriteCond %{REQUEST_FILENAME} \.(jpg|gif|png|ico|flv|htm|html|php|css|js)$
  
RewriteRule . - [L]
  
  
# If the file doesn't exist, rewrite to index
  
RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond 
%{REQUEST_FILENAME} !-d
  RewriteRule 
^(.*)$ index.php?rewrite=[L,QSA]

</
IfModule>

# sends requests /index.php/path/to/module/ to "index.php"
# AcceptPathInfo On

# @todo This may not be effective in some cases
FileETag Size 
il problema è che adesso ho caricato una sottocartella al dominio che è in un percorso come:
nomesito.ext/supporto/

se io clicco questo percorso nell'url mi da "pagina non trovata"
se disabilito l'htaccess invece funziona.
come posso sistemare questo problema aggiungendo come eccezione al file .htaccess l'apertura della cartella /supporto/ senza che mi dia "pagina non trovata" ???

grazie a chi mi aiuterà