Selidba stranice i promjena abc.com/index.php/cipeleMuske u abc.com/cipeleMuske

Obzirom da će stranica biti prebačena sa j1.5 na joomlu3, želja je i “urediti” nazive linkova.
Ne sviđa mi se ovaj “index.php” u nazivu tj url- u npr. www.abc.com.hr/index.php/cipeleMuske, ili www.abc.com.hr/index.php/cipeleZenske.

Želja isključiti ovaj index.php iz naziva. www.abc.com.hr/cipeleMuske tj. www.abc.com.hr/cipeleZenske.
Što napraviti u tom slučaju da se index.php ne prikazuje?

Kako će pretraživači gledati na promjenu tj. brisanje index.php iz naslova, obzirom da je www.abc.com.hr/index.php/cipeleMuske star već 2 godine…

Ne bi trebao imati problema, jer će stranica izvršiti redirekciju takvih urlova.

RewriteCond %{THE_REQUEST} !^POST
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^/]+/)*index\.php/([^\ ]*)\ HTTP/
RewriteCond %{SERVER_PORT}>s ^(443>(s)|[0-9]+>s)$
RewriteRule ^(([^/]+/)*)index\.php/(.*)$ http%2://www.example.com/$1$2 [R=301,L]

########## Begin - 301 Redirect
#
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^/]+/)*(index|home)\.html?\ HTTP/
RewriteRule ^(([^/]+/)*)(index|home)\.html?$ http://www.example.com/$1 [R=301,L]
#
RewriteCond %{THE_REQUEST} !^POST
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^/]+/)*index\.php\ HTTP/
RewriteCond %{SERVER_PORT}>s ^(443>(s)|[0-9]+>s)$
RewriteRule ^(([^/]+/)*)index\.php$ http%2://www.example.com/$1 [R=301,L]
#
RewriteCond %{HTTP_HOST} !^(www\.example\.com)?$
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
#
########## End - 301 Redirect