salve io ho questo file .htaccess
RewriteEngine On
RewriteRule ^(.+).html dettaglio-prodotti.php [QSA,L]
RewriteRule ^(.+).htm dettaglio-evento.php [QSA,L]
RewriteRule ^(.+).asp dettaglio-news.php [QSA,L]
così sembra funzionare (un po per caso) ma io vorrei
che differenziasse gli indirizzi in maniera precisa in base all'estenzione del file. cioè
dovrebbe differenziare
RewriteRule ^(.+).html dettaglio-prodotti.php [QSA,L]
RewriteRule ^(.+).htm dettaglio-evento.php [QSA,L]
RewriteRule ^(.+).shtml dettaglio-news.php [QSA,L]
RewriteRule ^(.+).shtm dettaglio-news.php [QSA,L]
RewriteRule ^(.+).xhtm dettaglio-news.php [QSA,L]
RewriteRule ^(.+).xhtml dettaglio-news.php [QSA,L]
spewro di essere stato chiaro!!