I would like to redirect all paths like this:
myurl.com/worldwide/en myurl.com/worldwide/pt myurl.com/worldwide/de
to:
myur
Use this code
RewriteEngine On RewriteBase /worldwide/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?lang=$1 [L,QSA]
Please let me know if this helps you