Language translation doesn't work on this page domain.com/de/search/query/sexy/ctr/1/ and other pagination pages.
It's not in german but still in french ( my language ) with the default url rewrite:
Code: Select all
RewriteRule ^search/(.*)/(.*)/(.*)/(.*)/$ /kli/tube/index.php?search_type=$1&search=$2&order=$3&page=$4
I tried to change to this url rewrite:
Code: Select all
RewriteCond %{QUERY_STRING} ^(.+)$
RewriteRule ^search/([^/]+)/([^/]+)/([^/]+)/([^/]+)/$ /kli/cgi/out.php?link=images/&%{QUERY_STRING}&url=content&p=100&skip_to_cookie=true&skip_sell=true&search_type=$1&order=$3&page=$4&force_template=content_search [L]
RewriteRule ^search/([^/]+)/([^/]+)/([^/]+)/([^/]+)/$ /kli/tube/index.php?search_type=$1&order=$3&page=$4&force_template=model_galleries&force_template=content_search [L]
Now the language problem is solved but the tag <!--SEARCH_QUERY--> outputs <!--SEARCH_QUERY--> itself and not a result.
What should be the write url rewrite?
Thank you.