Ciao a tutti,
ho impostato queste regole nel file .htaccess del mio dominio:

RewriteEngine on
RewriteCond %{THE_REQUEST} "GET /index.php HTTP/1.1"
RewriteRule index\.php http://dominio.it/ [R=301,L]

RewriteCond %{HTTP_HOST} ^dominio.it [NC]
RewriteRule .? http://www.dominio.it%{REQUEST_URI} [R=301,L]


Se ora volessi far sì che l'url

sottodominio.dominio.it/index.php sia reindirizzato a sottodominio.dominio.it

com'è che dovrei modificare il codice?

Grazie in anticipo.