Мне нужно перенаправить URL без локали на URL с локалью.Пример: https://test.example.com/products/123/greate-product -> https://test.example.com/es/products/123/greate-product
Я уже пробовал настройки на apache, но он не работает
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} !^/es$
RewriteCond %{REQUEST_URI} !^/en$
RewriteCond %{REQUEST_URI} !^/es/$
RewriteCond %{REQUEST_URI} !^/en/$
RewriteCond %{REQUEST_URI} !^/es/.+$
RewriteCond %{REQUEST_URI} !^/en/.+$
RewriteCond %{REQUEST_URI} !^/content/servererror/.*
RewriteRule ^/(.*) https://%{HTTP_HOST}/es/$1 [R=permanent,L]