ich stelle mich leider sehr naiv an bei dem Arbeiten mit der .htaccess Datei

Gibt es irgend eine gute Erklärung um genau das Thema zu verstehen?
Mein Problem sieht folgend aus:
Alle Einträge Google und alle meine Backlinks sehen aus
https://www.rolls-royce-wiki.de/index.php/SRH2008
Nun nach der umstellung sieht die URL so aus:
https://www.rolls-royce-wiki.de/SRH2008
Wie kann ich das mit der .htaccess datei machen?
Bisher steht folgendes in der Datei drin:
RewriteEngine on
RewriteCond %{REQUEST_URI} !index.php
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d [OR]
RewriteCond %{REQUEST_FILENAME} -l
RewriteRule ^(.+) /srv/www/vhosts/rolls-royce-wiki.de/httpdocs/$1 [L]
# redirect to main page
RewriteRule ^/*$ /index.php?title=Startseite [L,QSA]
# anything else is to be treated as a title
RewriteCond %{REQUEST_URI} !index.php
RewriteRule ^(.+)$ /index.php?title=$1 [L,QSA]
Danke im Vorraus