Hi everyone, please help me with this bug:
urls www.example.com/fr/home, www.example.com/sk/home,www.example.com/hu/home
are being displayed correctly, where urls: www.example.com/en/home, www.example.com/pl/home, www.example.com/ru/home, www.example.com/cs/home are redirected to www.example.com/ru/ru/home (means 2times language code+'/')
the htaccess file:
RewriteRule ^(en|sk|cs|pl|hu|ru|fr)\/(application)\/(.+)$ ?page=2&$2=$3 [NC,L]
RewriteRule ^(application)\/(.+)$ ?page=2&$1=$2 [NC,L]
RewriteRule ^(en|sk|cs|pl|hu|ru|fr)\/(product)\/(.+)$ ?page=3&$2=$3 [NC,L]
RewriteRule ^(product)\/(.+)$ ?page=3&$1=$2 [NC,L]
RewriteRule ^(en|sk|cs|pl|hu|ru|fr)\/(service)\/(.+)$ ?page=4&$2=$3 [NC,L]
RewriteRule ^(en|sk|cs|pl|hu|ru|fr)\/(news)\/(.+)$ ?page=6&news=$3 [NC,L,NE]
RewriteRule ^(en|sk|cs|pl|hu|ru|fr)+\/(download)\/(.+)$ ?page=9&down=$3 [NC,L]
RewriteRule ^(en|sk|cs|pl|hu|ru|fr)\/(home)$ ?lang=$1 [NC,L]
RewriteRule ^(en|sk|cs|pl|hu|ru|fr)+\/(contact)\/(.+)$ ?page=5&contact=$3 [NC,L]
there is nothing else in the htaccess. and there is no other redirecting of the home page in further code.
thanks
spok