Salve, ho abilitato nella sezione SEO i Friendly url e il mod rewrite, ma ho sempre quel fastidiosissimo index.php in mezzo alle scatole...
es.
http://www.nomesito/index.php/nomepagina.html
Gli URL sono statici ora, ma con index.php...
Ho anche cambiato il file htaccess.txt in .htaccess
Di seguito il suo contenuto:
---------------------------
Options FollowSymLinks
#
# mod_rewrite in use
RewriteEngine On
# Togli il seguente commento se l'url del server
# non è direttamente relazionato al file path
# Aggiorna le tue directory joomla (just / for root)
RewriteBase /
########## Begin Standard SEF Section
## Tutte le linee qui sotto sono richieste se
## sul server hai cartelle con nome content o component
## Se non hai cartelle con questo nome, lascia il commento
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes##
RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|/[^.]*)$ [NC]
RewriteRule ^(content/|component/) index.php
#
########## E-fine
########## inizio
#
#RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes##
RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|/[^.]*)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php
#
########## fine
--------------------------------------------
Il sito per ora gira in locale, ho installato e configurato Apache.
Grazie in anticipo.