Yes I know there are lots of informations about this. I couldn’t get anything to work.
I have a few dead links because I once had a Multilang Addon installed which left behind a Language url segment and some external links are targeting this dead url. So I want to redirect them to the url without the language segment.
The Url with the Language segment looks like this:
http://toplevel.com/en/segement1/segement2/segement3
So I want to remove the /en/ segment from the url.
I Already have the index.php removed with:
RewriteEngine On
# Removes index.php
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]I tried already lots of code snippets from the Web but none worked so far.
Thanks for your help.